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.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. {
  2. "_args": [
  3. [
  4. "ajv@6.12.6",
  5. "/home/pi/Desktop/smartMirrorTestEnvironment/MagicMirror"
  6. ]
  7. ],
  8. "_from": "ajv@6.12.6",
  9. "_id": "ajv@6.12.6",
  10. "_inBundle": false,
  11. "_integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
  12. "_location": "/ajv",
  13. "_phantomChildren": {},
  14. "_requested": {
  15. "type": "version",
  16. "registry": true,
  17. "raw": "ajv@6.12.6",
  18. "name": "ajv",
  19. "escapedName": "ajv",
  20. "rawSpec": "6.12.6",
  21. "saveSpec": null,
  22. "fetchSpec": "6.12.6"
  23. },
  24. "_requiredBy": [
  25. "/@eslint/eslintrc",
  26. "/eslint"
  27. ],
  28. "_resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
  29. "_spec": "6.12.6",
  30. "_where": "/home/pi/Desktop/smartMirrorTestEnvironment/MagicMirror",
  31. "author": {
  32. "name": "Evgeny Poberezkin"
  33. },
  34. "bugs": {
  35. "url": "https://github.com/ajv-validator/ajv/issues"
  36. },
  37. "collective": {
  38. "type": "opencollective",
  39. "url": "https://opencollective.com/ajv"
  40. },
  41. "dependencies": {
  42. "fast-deep-equal": "^3.1.1",
  43. "fast-json-stable-stringify": "^2.0.0",
  44. "json-schema-traverse": "^0.4.1",
  45. "uri-js": "^4.2.2"
  46. },
  47. "description": "Another JSON Schema Validator",
  48. "devDependencies": {
  49. "ajv-async": "^1.0.0",
  50. "bluebird": "^3.5.3",
  51. "brfs": "^2.0.0",
  52. "browserify": "^16.2.0",
  53. "chai": "^4.0.1",
  54. "coveralls": "^3.0.1",
  55. "del-cli": "^3.0.0",
  56. "dot": "^1.0.3",
  57. "eslint": "^7.3.1",
  58. "gh-pages-generator": "^0.2.3",
  59. "glob": "^7.0.0",
  60. "if-node-version": "^1.0.0",
  61. "js-beautify": "^1.7.3",
  62. "jshint": "^2.10.2",
  63. "json-schema-test": "^2.0.0",
  64. "karma": "^5.0.0",
  65. "karma-chrome-launcher": "^3.0.0",
  66. "karma-mocha": "^2.0.0",
  67. "karma-sauce-launcher": "^4.1.3",
  68. "mocha": "^8.0.1",
  69. "nyc": "^15.0.0",
  70. "pre-commit": "^1.1.1",
  71. "require-globify": "^1.3.0",
  72. "typescript": "^3.9.5",
  73. "uglify-js": "^3.6.9",
  74. "watch": "^1.0.0"
  75. },
  76. "files": [
  77. "lib/",
  78. "dist/",
  79. "scripts/",
  80. "LICENSE",
  81. ".tonic_example.js"
  82. ],
  83. "funding": {
  84. "type": "github",
  85. "url": "https://github.com/sponsors/epoberezkin"
  86. },
  87. "homepage": "https://github.com/ajv-validator/ajv",
  88. "keywords": [
  89. "JSON",
  90. "schema",
  91. "validator",
  92. "validation",
  93. "jsonschema",
  94. "json-schema",
  95. "json-schema-validator",
  96. "json-schema-validation"
  97. ],
  98. "license": "MIT",
  99. "main": "lib/ajv.js",
  100. "name": "ajv",
  101. "nyc": {
  102. "exclude": [
  103. "**/spec/**",
  104. "node_modules"
  105. ],
  106. "reporter": [
  107. "lcov",
  108. "text-summary"
  109. ]
  110. },
  111. "repository": {
  112. "type": "git",
  113. "url": "git+https://github.com/ajv-validator/ajv.git"
  114. },
  115. "scripts": {
  116. "build": "del-cli lib/dotjs/*.js \"!lib/dotjs/index.js\" && node scripts/compile-dots.js",
  117. "bundle": "del-cli dist && node ./scripts/bundle.js . Ajv pure_getters",
  118. "bundle-beautify": "node ./scripts/bundle.js js-beautify",
  119. "eslint": "eslint lib/{compile/,}*.js spec/{**/,}*.js scripts --ignore-pattern spec/JSON-Schema-Test-Suite",
  120. "jshint": "jshint lib/{compile/,}*.js",
  121. "lint": "npm run jshint && npm run eslint",
  122. "prepublish": "npm run build && npm run bundle",
  123. "test": "npm run lint && npm run build && npm run test-all",
  124. "test-all": "npm run test-cov && if-node-version 10 npm run test-browser",
  125. "test-browser": "del-cli .browser && npm run bundle && scripts/prepare-tests && npm run test-karma",
  126. "test-cov": "nyc npm run test-spec",
  127. "test-debug": "npm run test-spec -- --inspect-brk",
  128. "test-fast": "AJV_FAST_TEST=true npm run test-spec",
  129. "test-karma": "karma start",
  130. "test-spec": "mocha spec/{**/,}*.spec.js -R spec",
  131. "test-ts": "tsc --target ES5 --noImplicitAny --noEmit spec/typescript/index.ts",
  132. "watch": "watch \"npm run build\" ./lib/dot"
  133. },
  134. "tonicExampleFilename": ".tonic_example.js",
  135. "typings": "lib/ajv.d.ts",
  136. "version": "6.12.6"
  137. }