package.json 4.1 KB

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