package.json 3.8 KB

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