package.json 4.0 KB

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