项目原始demo,不改动
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Deze repo is gearchiveerd. U kunt bestanden bekijken en het klonen, maar niet pushen of problemen/pull-requests openen.

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