package.json 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. {
  2. "_from": "ajv@^6.12.3",
  3. "_id": "ajv@6.12.6",
  4. "_inBundle": false,
  5. "_integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
  6. "_location": "/ajv",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "ajv@^6.12.3",
  12. "name": "ajv",
  13. "escapedName": "ajv",
  14. "rawSpec": "^6.12.3",
  15. "saveSpec": null,
  16. "fetchSpec": "^6.12.3"
  17. },
  18. "_requiredBy": [
  19. "/@eslint/eslintrc",
  20. "/babel-loader/schema-utils",
  21. "/cache-loader/schema-utils",
  22. "/compression-webpack-plugin/schema-utils",
  23. "/eslint",
  24. "/eslint-loader/schema-utils",
  25. "/har-validator",
  26. "/sass-loader/schema-utils",
  27. "/schema-utils",
  28. "/webpack"
  29. ],
  30. "_resolved": "https://registry.npmmirror.com/ajv/-/ajv-6.12.6.tgz",
  31. "_shasum": "baf5a62e802b07d977034586f8c3baf5adf26df4",
  32. "_spec": "ajv@^6.12.3",
  33. "_where": "C:\\Users\\Administrator\\Desktop\\crmeb5.0\\template\\admin\\node_modules\\har-validator",
  34. "author": {
  35. "name": "Evgeny Poberezkin"
  36. },
  37. "bugs": {
  38. "url": "https://github.com/ajv-validator/ajv/issues"
  39. },
  40. "bundleDependencies": false,
  41. "collective": {
  42. "type": "opencollective",
  43. "url": "https://opencollective.com/ajv"
  44. },
  45. "dependencies": {
  46. "fast-deep-equal": "^3.1.1",
  47. "fast-json-stable-stringify": "^2.0.0",
  48. "json-schema-traverse": "^0.4.1",
  49. "uri-js": "^4.2.2"
  50. },
  51. "deprecated": false,
  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. }