package.json 3.9 KB

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