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.

package.json 3.8KB

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