package.json 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. {
  2. "_from": "ajv@^5.1.0",
  3. "_id": "ajv@5.5.2",
  4. "_inBundle": false,
  5. "_integrity": "sha1-c7Xuyj+rZT49P5Qis0GtQiBdyWU=",
  6. "_location": "/ajv",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "ajv@^5.1.0",
  12. "name": "ajv",
  13. "escapedName": "ajv",
  14. "rawSpec": "^5.1.0",
  15. "saveSpec": null,
  16. "fetchSpec": "^5.1.0"
  17. },
  18. "_requiredBy": [
  19. "/har-validator"
  20. ],
  21. "_resolved": "https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz",
  22. "_shasum": "73b5eeca3fab653e3d3f9422b341ad42205dc965",
  23. "_spec": "ajv@^5.1.0",
  24. "_where": "C:\\John\\WorkSpace\\WebStorm\\WinBoxNode\\node_modules\\har-validator",
  25. "author": {
  26. "name": "Evgeny Poberezkin"
  27. },
  28. "bugs": {
  29. "url": "https://github.com/epoberezkin/ajv/issues"
  30. },
  31. "bundleDependencies": false,
  32. "dependencies": {
  33. "co": "^4.6.0",
  34. "fast-deep-equal": "^1.0.0",
  35. "fast-json-stable-stringify": "^2.0.0",
  36. "json-schema-traverse": "^0.3.0"
  37. },
  38. "deprecated": false,
  39. "description": "Another JSON Schema Validator",
  40. "devDependencies": {
  41. "ajv-async": "^0.1.0",
  42. "bluebird": "^3.1.5",
  43. "brfs": "^1.4.3",
  44. "browserify": "^14.1.0",
  45. "chai": "^4.0.1",
  46. "coveralls": "^3.0.0",
  47. "del-cli": "^1.1.0",
  48. "dot": "^1.0.3",
  49. "eslint": "^4.1.0",
  50. "gh-pages-generator": "^0.2.0",
  51. "glob": "^7.0.0",
  52. "if-node-version": "^1.0.0",
  53. "js-beautify": "^1.7.3",
  54. "jshint": "^2.9.4",
  55. "json-schema-test": "^2.0.0",
  56. "karma": "^1.0.0",
  57. "karma-chrome-launcher": "^2.0.0",
  58. "karma-mocha": "^1.1.1",
  59. "karma-phantomjs-launcher": "^1.0.0",
  60. "karma-sauce-launcher": "^1.1.0",
  61. "mocha": "^4.0.0",
  62. "nodent": "^3.0.17",
  63. "nyc": "^11.0.2",
  64. "phantomjs-prebuilt": "^2.1.4",
  65. "pre-commit": "^1.1.1",
  66. "regenerator": "^0.12.2",
  67. "require-globify": "^1.3.0",
  68. "typescript": "^2.6.2",
  69. "uglify-js": "^3.1.5",
  70. "watch": "^1.0.0"
  71. },
  72. "files": [
  73. "lib/",
  74. "dist/",
  75. "scripts/",
  76. "LICENSE",
  77. ".tonic_example.js"
  78. ],
  79. "homepage": "https://github.com/epoberezkin/ajv",
  80. "keywords": [
  81. "JSON",
  82. "schema",
  83. "validator",
  84. "validation",
  85. "jsonschema",
  86. "json-schema",
  87. "json-schema-validator",
  88. "json-schema-validation"
  89. ],
  90. "license": "MIT",
  91. "main": "lib/ajv.js",
  92. "name": "ajv",
  93. "nyc": {
  94. "exclude": [
  95. "**/spec/**",
  96. "node_modules"
  97. ],
  98. "reporter": [
  99. "lcov",
  100. "text-summary"
  101. ]
  102. },
  103. "repository": {
  104. "type": "git",
  105. "url": "git+https://github.com/epoberezkin/ajv.git"
  106. },
  107. "scripts": {
  108. "build": "del-cli lib/dotjs/*.js && node scripts/compile-dots.js",
  109. "bundle": "node ./scripts/bundle.js . Ajv pure_getters",
  110. "bundle-all": "del-cli dist && npm run bundle && npm run bundle-regenerator && npm run bundle-nodent",
  111. "bundle-beautify": "node ./scripts/bundle.js js-beautify",
  112. "bundle-nodent": "node ./scripts/bundle.js nodent",
  113. "bundle-regenerator": "node ./scripts/bundle.js regenerator",
  114. "eslint": "if-node-version \">=4\" eslint lib/*.js lib/compile/*.js spec/*.js scripts",
  115. "jshint": "jshint lib/*.js lib/**/*.js --exclude lib/dotjs/**/*",
  116. "prepublish": "npm run build && npm run bundle-all",
  117. "test": "npm run jshint && npm run eslint && npm run test-ts && npm run build && npm run test-cov && if-node-version 4 npm run test-browser",
  118. "test-browser": "del-cli .browser && npm run bundle-all && scripts/prepare-tests && npm run test-karma",
  119. "test-cov": "nyc npm run test-spec",
  120. "test-debug": "mocha spec/*.spec.js --debug-brk -R spec",
  121. "test-fast": "AJV_FAST_TEST=true npm run test-spec",
  122. "test-karma": "karma start --single-run --browsers PhantomJS",
  123. "test-spec": "mocha spec/*.spec.js -R spec $(if-node-version 7 echo --harmony-async-await)",
  124. "test-ts": "tsc --target ES5 --noImplicitAny lib/ajv.d.ts",
  125. "watch": "watch 'npm run build' ./lib/dot"
  126. },
  127. "tonicExampleFilename": ".tonic_example.js",
  128. "typings": "lib/ajv.d.ts",
  129. "version": "5.5.2"
  130. }