package.json 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. {
  2. "_from": "ajv@^5.3.0",
  3. "_id": "ajv@5.5.2",
  4. "_inBundle": false,
  5. "_integrity": "sha512-Ajr4IcMXq/2QmMkEmSvxqfLN5zGmJ92gHXAeOXq1OekoH2rfDNsgdDoL2f7QaRCy7G/E6TpxBVdRuNraMztGHw==",
  6. "_location": "/ajv",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "ajv@^5.3.0",
  12. "name": "ajv",
  13. "escapedName": "ajv",
  14. "rawSpec": "^5.3.0",
  15. "saveSpec": null,
  16. "fetchSpec": "^5.3.0"
  17. },
  18. "_requiredBy": [
  19. "/eslint",
  20. "/table"
  21. ],
  22. "_resolved": "https://registry.npmmirror.com/ajv/-/ajv-5.5.2.tgz",
  23. "_shasum": "73b5eeca3fab653e3d3f9422b341ad42205dc965",
  24. "_spec": "ajv@^5.3.0",
  25. "_where": "D:\\yf\\项目\\智慧工地\\代码库\\zhgd-front\\crm_web\\node_modules\\eslint",
  26. "author": {
  27. "name": "Evgeny Poberezkin"
  28. },
  29. "bugs": {
  30. "url": "https://github.com/epoberezkin/ajv/issues"
  31. },
  32. "bundleDependencies": false,
  33. "dependencies": {
  34. "co": "^4.6.0",
  35. "fast-deep-equal": "^1.0.0",
  36. "fast-json-stable-stringify": "^2.0.0",
  37. "json-schema-traverse": "^0.3.0"
  38. },
  39. "deprecated": false,
  40. "description": "Another JSON Schema Validator",
  41. "devDependencies": {
  42. "ajv-async": "^0.1.0",
  43. "bluebird": "^3.1.5",
  44. "brfs": "^1.4.3",
  45. "browserify": "^14.1.0",
  46. "chai": "^4.0.1",
  47. "coveralls": "^3.0.0",
  48. "del-cli": "^1.1.0",
  49. "dot": "^1.0.3",
  50. "eslint": "^4.1.0",
  51. "gh-pages-generator": "^0.2.0",
  52. "glob": "^7.0.0",
  53. "if-node-version": "^1.0.0",
  54. "js-beautify": "^1.7.3",
  55. "jshint": "^2.9.4",
  56. "json-schema-test": "^2.0.0",
  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": "^4.0.0",
  63. "nodent": "^3.0.17",
  64. "nyc": "^11.0.2",
  65. "phantomjs-prebuilt": "^2.1.4",
  66. "pre-commit": "^1.1.1",
  67. "regenerator": "^0.12.2",
  68. "require-globify": "^1.3.0",
  69. "typescript": "^2.6.2",
  70. "uglify-js": "^3.1.5",
  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. "repository": {
  105. "type": "git",
  106. "url": "git+https://github.com/epoberezkin/ajv.git"
  107. },
  108. "scripts": {
  109. "build": "del-cli lib/dotjs/*.js && node scripts/compile-dots.js",
  110. "bundle": "node ./scripts/bundle.js . Ajv pure_getters",
  111. "bundle-all": "del-cli dist && npm run bundle && npm run bundle-regenerator && npm run bundle-nodent",
  112. "bundle-beautify": "node ./scripts/bundle.js js-beautify",
  113. "bundle-nodent": "node ./scripts/bundle.js nodent",
  114. "bundle-regenerator": "node ./scripts/bundle.js regenerator",
  115. "eslint": "if-node-version \">=4\" eslint lib/*.js lib/compile/*.js spec/*.js scripts",
  116. "jshint": "jshint lib/*.js lib/**/*.js --exclude lib/dotjs/**/*",
  117. "prepublish": "npm run build && npm run bundle-all",
  118. "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",
  119. "test-browser": "del-cli .browser && npm run bundle-all && scripts/prepare-tests && npm run test-karma",
  120. "test-cov": "nyc npm run test-spec",
  121. "test-debug": "mocha spec/*.spec.js --debug-brk -R spec",
  122. "test-fast": "AJV_FAST_TEST=true npm run test-spec",
  123. "test-karma": "karma start --single-run --browsers PhantomJS",
  124. "test-spec": "mocha spec/*.spec.js -R spec $(if-node-version 7 echo --harmony-async-await)",
  125. "test-ts": "tsc --target ES5 --noImplicitAny lib/ajv.d.ts",
  126. "watch": "watch 'npm run build' ./lib/dot"
  127. },
  128. "tonicExampleFilename": ".tonic_example.js",
  129. "typings": "lib/ajv.d.ts",
  130. "version": "5.5.2"
  131. }