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.

140 lines
3.9 KiB

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