package.json 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. {
  2. "_from": "ajv@^6.5.5",
  3. "_id": "ajv@6.6.2",
  4. "_inBundle": false,
  5. "_integrity": "sha512-FBHEW6Jf5TB9MGBgUUA9XHkTbjXYfAUjY43ACMfmdMRHniyoMHjHjzD50OK8LGDWQwp4rWEsIq5kEqq7rvIM1g==",
  6. "_location": "/ajv",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "ajv@^6.5.5",
  12. "name": "ajv",
  13. "escapedName": "ajv",
  14. "rawSpec": "^6.5.5",
  15. "saveSpec": null,
  16. "fetchSpec": "^6.5.5"
  17. },
  18. "_requiredBy": [
  19. "/har-validator"
  20. ],
  21. "_resolved": "https://registry.npmjs.org/ajv/-/ajv-6.6.2.tgz",
  22. "_shasum": "caceccf474bf3fc3ce3b147443711a24063cc30d",
  23. "_spec": "ajv@^6.5.5",
  24. "_where": "/home/kevin/Documents/Sites/figureslibres.net/user/themes/figureslibres/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. "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.2"
  37. },
  38. "deprecated": false,
  39. "description": "Another JSON Schema Validator",
  40. "devDependencies": {
  41. "ajv-async": "^1.0.0",
  42. "bluebird": "^3.5.3",
  43. "brfs": "^2.0.0",
  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": "^5.0.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": "^3.0.0",
  57. "karma-chrome-launcher": "^2.2.0",
  58. "karma-mocha": "^1.1.1",
  59. "karma-sauce-launcher": "^2.0.0",
  60. "mocha": "^5.1.1",
  61. "nyc": "^12.0.1",
  62. "pre-commit": "^1.1.1",
  63. "require-globify": "^1.3.0",
  64. "typescript": "^2.8.3",
  65. "uglify-js": "^3.3.24",
  66. "watch": "^1.0.0"
  67. },
  68. "files": [
  69. "lib/",
  70. "dist/",
  71. "scripts/",
  72. "LICENSE",
  73. ".tonic_example.js"
  74. ],
  75. "homepage": "https://github.com/epoberezkin/ajv",
  76. "keywords": [
  77. "JSON",
  78. "schema",
  79. "validator",
  80. "validation",
  81. "jsonschema",
  82. "json-schema",
  83. "json-schema-validator",
  84. "json-schema-validation"
  85. ],
  86. "license": "MIT",
  87. "main": "lib/ajv.js",
  88. "name": "ajv",
  89. "nyc": {
  90. "exclude": [
  91. "**/spec/**",
  92. "node_modules"
  93. ],
  94. "reporter": [
  95. "lcov",
  96. "text-summary"
  97. ]
  98. },
  99. "repository": {
  100. "type": "git",
  101. "url": "git+https://github.com/epoberezkin/ajv.git"
  102. },
  103. "scripts": {
  104. "build": "del-cli lib/dotjs/*.js '!lib/dotjs/index.js' && node scripts/compile-dots.js",
  105. "bundle": "del-cli dist && node ./scripts/bundle.js . Ajv pure_getters",
  106. "bundle-beautify": "node ./scripts/bundle.js js-beautify",
  107. "eslint": "eslint lib/*.js lib/compile/*.js spec/*.js scripts",
  108. "jshint": "jshint lib/*.js lib/**/*.js --exclude lib/dotjs/**/*",
  109. "prepublish": "npm run build && npm run bundle",
  110. "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",
  111. "test-browser": "del-cli .browser && npm run bundle && scripts/prepare-tests && npm run test-karma",
  112. "test-cov": "nyc npm run test-spec",
  113. "test-debug": "mocha spec/*.spec.js --debug-brk -R spec",
  114. "test-fast": "AJV_FAST_TEST=true npm run test-spec",
  115. "test-karma": "karma start",
  116. "test-spec": "mocha spec/*.spec.js -R spec",
  117. "test-ts": "tsc --target ES5 --noImplicitAny lib/ajv.d.ts",
  118. "watch": "watch 'npm run build' ./lib/dot"
  119. },
  120. "tonicExampleFilename": ".tonic_example.js",
  121. "typings": "lib/ajv.d.ts",
  122. "version": "6.6.2"
  123. }