package.json 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. {
  2. "_from": "ajv@^6.1.1",
  3. "_id": "ajv@6.5.1",
  4. "_inBundle": false,
  5. "_integrity": "sha512-pgZos1vgOHDiC7gKNbZW8eKvCnNXARv2oqrGQT7Hzbq5Azp7aZG6DJzADnkuSq7RH6qkXp4J/m68yPX/2uBHyQ==",
  6. "_location": "/ajv",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "ajv@^6.1.1",
  12. "name": "ajv",
  13. "escapedName": "ajv",
  14. "rawSpec": "^6.1.1",
  15. "saveSpec": null,
  16. "fetchSpec": "^6.1.1"
  17. },
  18. "_requiredBy": [
  19. "/objection"
  20. ],
  21. "_resolved": "https://registry.npmjs.org/ajv/-/ajv-6.5.1.tgz",
  22. "_shasum": "88ebc1263c7133937d108b80c5572e64e1d9322d",
  23. "_spec": "ajv@^6.1.1",
  24. "_where": "/home/zorro/Documents/Sahib/zweiachtzehn/node_modules/objection",
  25. "author": {
  26. "name": "Evgeny Poberezkin"
  27. },
  28. "bugs": {
  29. "url": "https://github.com/epoberezkin/ajv/issues"
  30. },
  31. "bundleDependencies": false,
  32. "dependencies": {
  33. "fast-deep-equal": "^2.0.1",
  34. "fast-json-stable-stringify": "^2.0.0",
  35. "json-schema-traverse": "^0.4.1",
  36. "uri-js": "^4.2.1"
  37. },
  38. "deprecated": false,
  39. "description": "Another JSON Schema Validator",
  40. "devDependencies": {
  41. "ajv-async": "^1.0.0",
  42. "bluebird": "^3.1.5",
  43. "brfs": "^1.6.1",
  44. "browserify": "^16.2.0",
  45. "chai": "^4.0.1",
  46. "coveralls": "^3.0.1",
  47. "del-cli": "^1.1.0",
  48. "dot": "^1.0.3",
  49. "eslint": "^4.14.0",
  50. "gh-pages-generator": "^0.2.3",
  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": "^2.0.2",
  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": "^5.1.1",
  62. "nyc": "^12.0.1",
  63. "phantomjs-prebuilt": "^2.1.4",
  64. "pre-commit": "^1.1.1",
  65. "require-globify": "^1.3.0",
  66. "typescript": "^2.8.3",
  67. "uglify-js": "^3.3.24",
  68. "watch": "^1.0.0"
  69. },
  70. "files": [
  71. "lib/",
  72. "dist/",
  73. "scripts/",
  74. "LICENSE",
  75. ".tonic_example.js"
  76. ],
  77. "homepage": "https://github.com/epoberezkin/ajv",
  78. "keywords": [
  79. "JSON",
  80. "schema",
  81. "validator",
  82. "validation",
  83. "jsonschema",
  84. "json-schema",
  85. "json-schema-validator",
  86. "json-schema-validation"
  87. ],
  88. "license": "MIT",
  89. "main": "lib/ajv.js",
  90. "name": "ajv",
  91. "nyc": {
  92. "exclude": [
  93. "**/spec/**",
  94. "node_modules"
  95. ],
  96. "reporter": [
  97. "lcov",
  98. "text-summary"
  99. ]
  100. },
  101. "repository": {
  102. "type": "git",
  103. "url": "git+https://github.com/epoberezkin/ajv.git"
  104. },
  105. "scripts": {
  106. "build": "del-cli lib/dotjs/*.js '!lib/dotjs/index.js' && node scripts/compile-dots.js",
  107. "bundle": "del-cli dist && node ./scripts/bundle.js . Ajv pure_getters",
  108. "bundle-beautify": "node ./scripts/bundle.js js-beautify",
  109. "eslint": "eslint lib/*.js lib/compile/*.js spec/*.js scripts",
  110. "jshint": "jshint lib/*.js lib/**/*.js --exclude lib/dotjs/**/*",
  111. "prepublish": "npm run build && npm run bundle",
  112. "test": "npm run jshint && npm run eslint && npm run test-ts && npm run build && npm run test-cov && if-node-version 8 npm run test-browser",
  113. "test-browser": "del-cli .browser && npm run bundle && scripts/prepare-tests && npm run test-karma",
  114. "test-cov": "nyc npm run test-spec",
  115. "test-debug": "mocha spec/*.spec.js --debug-brk -R spec",
  116. "test-fast": "AJV_FAST_TEST=true npm run test-spec",
  117. "test-karma": "karma start --single-run --browsers PhantomJS",
  118. "test-spec": "mocha spec/*.spec.js -R spec",
  119. "test-ts": "tsc --target ES5 --noImplicitAny lib/ajv.d.ts",
  120. "watch": "watch 'npm run build' ./lib/dot"
  121. },
  122. "tonicExampleFilename": ".tonic_example.js",
  123. "typings": "lib/ajv.d.ts",
  124. "version": "6.5.1"
  125. }