Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

package.json 3.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. {
  2. "_args": [
  3. [
  4. "table@6.7.1",
  5. "/home/pi/Desktop/smartMirrorTestEnvironment/MagicMirror"
  6. ]
  7. ],
  8. "_from": "table@6.7.1",
  9. "_id": "table@6.7.1",
  10. "_inBundle": false,
  11. "_integrity": "sha512-ZGum47Yi6KOOFDE8m223td53ath2enHcYLgOCjGr5ngu8bdIARQk6mN/wRMv4yMRcHnCSnHbCEha4sobQx5yWg==",
  12. "_location": "/table",
  13. "_phantomChildren": {
  14. "fast-deep-equal": "3.1.3",
  15. "require-from-string": "2.0.2",
  16. "uri-js": "4.4.1"
  17. },
  18. "_requested": {
  19. "type": "version",
  20. "registry": true,
  21. "raw": "table@6.7.1",
  22. "name": "table",
  23. "escapedName": "table",
  24. "rawSpec": "6.7.1",
  25. "saveSpec": null,
  26. "fetchSpec": "6.7.1"
  27. },
  28. "_requiredBy": [
  29. "/eslint",
  30. "/stylelint"
  31. ],
  32. "_resolved": "https://registry.npmjs.org/table/-/table-6.7.1.tgz",
  33. "_spec": "6.7.1",
  34. "_where": "/home/pi/Desktop/smartMirrorTestEnvironment/MagicMirror",
  35. "author": {
  36. "name": "Gajus Kuizinas",
  37. "email": "gajus@gajus.com",
  38. "url": "http://gajus.com"
  39. },
  40. "bugs": {
  41. "url": "https://github.com/gajus/table/issues"
  42. },
  43. "dependencies": {
  44. "ajv": "^8.0.1",
  45. "lodash.clonedeep": "^4.5.0",
  46. "lodash.truncate": "^4.4.2",
  47. "slice-ansi": "^4.0.0",
  48. "string-width": "^4.2.0",
  49. "strip-ansi": "^6.0.0"
  50. },
  51. "description": "Formats data into a string table.",
  52. "devDependencies": {
  53. "@types/chai": "^4.2.16",
  54. "@types/lodash.clonedeep": "^4.5.6",
  55. "@types/lodash.mapvalues": "^4.6.6",
  56. "@types/lodash.truncate": "^4.4.6",
  57. "@types/mocha": "^8.2.2",
  58. "@types/node": "^14.14.37",
  59. "@types/sinon": "^10.0.0",
  60. "@types/slice-ansi": "^4.0.0",
  61. "ajv-cli": "^5.0.0",
  62. "ajv-keywords": "^5.0.0",
  63. "chai": "^4.2.0",
  64. "chalk": "^4.1.0",
  65. "coveralls": "^3.1.0",
  66. "eslint": "^7.16.0",
  67. "eslint-config-canonical": "^25.0.0",
  68. "gitdown": "^3.1.3",
  69. "husky": "^4.3.6",
  70. "js-beautify": "^1.13.0",
  71. "lodash.mapvalues": "^4.6.0",
  72. "mkdirp": "^1.0.4",
  73. "mocha": "^8.2.1",
  74. "nyc": "^15.1.0",
  75. "semantic-release": "^17.3.1",
  76. "sinon": "^9.2.2",
  77. "ts-node": "^9.1.1",
  78. "typescript": "4.2.4"
  79. },
  80. "engines": {
  81. "node": ">=10.0.0"
  82. },
  83. "files": [
  84. "dist/**/*.js",
  85. "dist/**/*.d.ts"
  86. ],
  87. "homepage": "https://github.com/gajus/table#readme",
  88. "husky": {
  89. "hooks": {
  90. "post-commit": "npm run create-readme && git add README.md && git commit -m 'docs: generate docs' --no-verify",
  91. "pre-commit": "npm run build && npm run lint && npm run test"
  92. }
  93. },
  94. "keywords": [
  95. "ascii",
  96. "text",
  97. "table",
  98. "align",
  99. "ansi"
  100. ],
  101. "license": "BSD-3-Clause",
  102. "main": "./dist/index.js",
  103. "name": "table",
  104. "nyc": {
  105. "extensions": [
  106. ".ts"
  107. ],
  108. "exclude": [
  109. "src/generated/validators.js",
  110. "test/**/*.ts"
  111. ],
  112. "reporter": [
  113. "text-lcov",
  114. "text"
  115. ]
  116. },
  117. "repository": {
  118. "type": "git",
  119. "url": "git+https://github.com/gajus/table.git"
  120. },
  121. "scripts": {
  122. "build": "npm run create-validators && npm run compile",
  123. "compile": "tsc",
  124. "create-readme": "gitdown ./.README/README.md --output-file ./README.md",
  125. "create-validators": "rm -fr ./src/generated && mkdirp ./src/generated && ajv compile --all-errors --inline-refs=false -s src/schemas/config -s src/schemas/streamConfig -r src/schemas/shared -c ajv-keywords/dist/keywords/typeof -o | js-beautify > ./src/generated/validators.js",
  126. "lint": "eslint --ignore-path .gitignore ./src ./test",
  127. "prebuild": "rm -fr ./dist && mkdirp dist",
  128. "test": "npm run create-validators && mocha --require ts-node/register \"./test/**/*.ts\""
  129. },
  130. "version": "6.7.1"
  131. }