package.json 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. {
  2. "_args": [
  3. [
  4. "ajv@6.10.0",
  5. "/Users/apple/tmp/ok/vue_cli_default"
  6. ]
  7. ],
  8. "_development": true,
  9. "_from": "ajv@6.10.0",
  10. "_id": "ajv@6.10.0",
  11. "_inBundle": false,
  12. "_integrity": "sha1-kNDVRDnaWHzX6EO/twRfUL0ivfE=",
  13. "_location": "/ajv",
  14. "_phantomChildren": {},
  15. "_requested": {
  16. "type": "version",
  17. "registry": true,
  18. "raw": "ajv@6.10.0",
  19. "name": "ajv",
  20. "escapedName": "ajv",
  21. "rawSpec": "6.10.0",
  22. "saveSpec": null,
  23. "fetchSpec": "6.10.0"
  24. },
  25. "_requiredBy": [
  26. "/cache-loader/schema-utils",
  27. "/file-loader/schema-utils",
  28. "/har-validator",
  29. "/mini-css-extract-plugin/schema-utils",
  30. "/postcss-loader/schema-utils",
  31. "/schema-utils",
  32. "/terser-webpack-plugin/schema-utils",
  33. "/url-loader/schema-utils",
  34. "/webpack",
  35. "/webpack-dev-server/schema-utils"
  36. ],
  37. "_resolved": "http://registry.npm.taobao.org/ajv/download/ajv-6.10.0.tgz",
  38. "_spec": "6.10.0",
  39. "_where": "/Users/apple/tmp/ok/vue_cli_default",
  40. "author": {
  41. "name": "Evgeny Poberezkin"
  42. },
  43. "bugs": {
  44. "url": "https://github.com/epoberezkin/ajv/issues"
  45. },
  46. "dependencies": {
  47. "fast-deep-equal": "^2.0.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": "^1.1.0",
  61. "dot": "^1.0.3",
  62. "eslint": "^5.0.0",
  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.9.7",
  68. "json-schema-test": "^2.0.0",
  69. "karma": "^3.0.0",
  70. "karma-chrome-launcher": "^2.2.0",
  71. "karma-mocha": "^1.1.1",
  72. "karma-sauce-launcher": "^2.0.0",
  73. "mocha": "^6.0.0",
  74. "nyc": "^13.2.0",
  75. "pre-commit": "^1.1.1",
  76. "require-globify": "^1.3.0",
  77. "typescript": "^2.8.3",
  78. "uglify-js": "^3.3.24",
  79. "watch": "^1.0.0"
  80. },
  81. "files": [
  82. "lib/",
  83. "dist/",
  84. "scripts/",
  85. "LICENSE",
  86. ".tonic_example.js"
  87. ],
  88. "homepage": "https://github.com/epoberezkin/ajv",
  89. "keywords": [
  90. "JSON",
  91. "schema",
  92. "validator",
  93. "validation",
  94. "jsonschema",
  95. "json-schema",
  96. "json-schema-validator",
  97. "json-schema-validation"
  98. ],
  99. "license": "MIT",
  100. "main": "lib/ajv.js",
  101. "name": "ajv",
  102. "nyc": {
  103. "exclude": [
  104. "**/spec/**",
  105. "node_modules"
  106. ],
  107. "reporter": [
  108. "lcov",
  109. "text-summary"
  110. ]
  111. },
  112. "repository": {
  113. "type": "git",
  114. "url": "git+https://github.com/epoberezkin/ajv.git"
  115. },
  116. "scripts": {
  117. "build": "del-cli lib/dotjs/*.js \"!lib/dotjs/index.js\" && node scripts/compile-dots.js",
  118. "bundle": "del-cli dist && node ./scripts/bundle.js . Ajv pure_getters",
  119. "bundle-beautify": "node ./scripts/bundle.js js-beautify",
  120. "eslint": "eslint lib/{compile/,}*.js spec/{**/,}*.js scripts --ignore-pattern spec/JSON-Schema-Test-Suite",
  121. "jshint": "jshint lib/{compile/,}*.js",
  122. "lint": "npm run jshint && npm run eslint",
  123. "prepublish": "npm run build && npm run bundle",
  124. "test": "npm run lint && npm run build && npm run test-all",
  125. "test-all": "npm run test-ts && npm run test-cov && if-node-version 10 npm run test-browser",
  126. "test-browser": "del-cli .browser && npm run bundle && scripts/prepare-tests && npm run test-karma",
  127. "test-cov": "nyc npm run test-spec",
  128. "test-debug": "npm run test-spec -- --inspect-brk",
  129. "test-fast": "AJV_FAST_TEST=true npm run test-spec",
  130. "test-karma": "karma start",
  131. "test-spec": "mocha spec/{**/,}*.spec.js -R spec",
  132. "test-ts": "tsc --target ES5 --noImplicitAny --noEmit spec/typescript/index.ts",
  133. "watch": "watch \"npm run build\" ./lib/dot"
  134. },
  135. "tonicExampleFilename": ".tonic_example.js",
  136. "typings": "lib/ajv.d.ts",
  137. "version": "6.10.0"
  138. }