package.json 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. {
  2. "_args": [
  3. [
  4. "ajv@4.11.8",
  5. "/mnt/Data/bach/Documents/ola/OLA#5/ola5doc/sys"
  6. ]
  7. ],
  8. "_development": true,
  9. "_from": "ajv@4.11.8",
  10. "_id": "ajv@4.11.8",
  11. "_inBundle": false,
  12. "_integrity": "sha1-gv+wKynmYq5TvcIK8VlHcGc5xTY=",
  13. "_location": "/ajv",
  14. "_phantomChildren": {},
  15. "_requested": {
  16. "type": "version",
  17. "registry": true,
  18. "raw": "ajv@4.11.8",
  19. "name": "ajv",
  20. "escapedName": "ajv",
  21. "rawSpec": "4.11.8",
  22. "saveSpec": null,
  23. "fetchSpec": "4.11.8"
  24. },
  25. "_requiredBy": [
  26. "/har-validator"
  27. ],
  28. "_resolved": "https://registry.npmjs.org/ajv/-/ajv-4.11.8.tgz",
  29. "_spec": "4.11.8",
  30. "_where": "/mnt/Data/bach/Documents/ola/OLA#5/ola5doc/sys",
  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. "json-stable-stringify": "^1.0.1"
  40. },
  41. "description": "Another JSON Schema Validator",
  42. "devDependencies": {
  43. "bluebird": "^3.1.5",
  44. "brfs": "^1.4.3",
  45. "browserify": "^14.1.0",
  46. "chai": "^3.5.0",
  47. "coveralls": "^2.11.4",
  48. "del-cli": "^0.2.1",
  49. "dot": "^1.0.3",
  50. "eslint": "^3.2.2",
  51. "gh-pages-generator": "^0.2.0",
  52. "glob": "^7.0.0",
  53. "if-node-version": "^1.0.0",
  54. "js-beautify": "^1.5.6",
  55. "jshint": "^2.8.0",
  56. "json-schema-test": "^1.1.1",
  57. "karma": "^1.0.0",
  58. "karma-chrome-launcher": "^2.0.0",
  59. "karma-mocha": "^1.1.1",
  60. "karma-phantomjs-launcher": "^1.0.0",
  61. "karma-sauce-launcher": "^1.1.0",
  62. "mocha": "^3.0.0",
  63. "nodent": "^3.0.17",
  64. "nyc": "^10.0.0",
  65. "phantomjs-prebuilt": "^2.1.4",
  66. "pre-commit": "^1.1.1",
  67. "regenerator": "0.9.7",
  68. "require-globify": "^1.3.0",
  69. "typescript": "^2.0.3",
  70. "uglify-js": "^2.6.1",
  71. "watch": "^1.0.0"
  72. },
  73. "files": [
  74. "lib/",
  75. "dist/",
  76. "scripts/",
  77. "LICENSE",
  78. ".tonic_example.js"
  79. ],
  80. "homepage": "https://github.com/epoberezkin/ajv",
  81. "keywords": [
  82. "JSON",
  83. "schema",
  84. "validator",
  85. "validation",
  86. "jsonschema",
  87. "json-schema",
  88. "json-schema-validator",
  89. "json-schema-validation"
  90. ],
  91. "license": "MIT",
  92. "main": "lib/ajv.js",
  93. "name": "ajv",
  94. "nyc": {
  95. "exclude": [
  96. "**/spec/**",
  97. "node_modules"
  98. ],
  99. "reporter": [
  100. "lcov",
  101. "text-summary"
  102. ]
  103. },
  104. "publishConfig": {
  105. "tag": "4.x"
  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 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",
  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": "4.11.8",
  134. "webpack": "dist/ajv.bundle.js"
  135. }