package.json 3.9 KB

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