Dashboard sipadu mbip
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

package.json 3.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. {
  2. "_from": "ajv@^6.1.0",
  3. "_id": "ajv@6.10.2",
  4. "_inBundle": false,
  5. "_integrity": "sha512-TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw==",
  6. "_location": "/ajv",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "ajv@^6.1.0",
  12. "name": "ajv",
  13. "escapedName": "ajv",
  14. "rawSpec": "^6.1.0",
  15. "saveSpec": null,
  16. "fetchSpec": "^6.1.0"
  17. },
  18. "_requiredBy": [
  19. "/file-loader/schema-utils",
  20. "/postcss-loader/schema-utils",
  21. "/schema-utils",
  22. "/style-loader/schema-utils",
  23. "/terser-webpack-plugin/schema-utils",
  24. "/webpack",
  25. "/webpack-dev-server/schema-utils",
  26. "/webpack/schema-utils"
  27. ],
  28. "_resolved": "https://registry.npmjs.org/ajv/-/ajv-6.10.2.tgz",
  29. "_shasum": "d3cea04d6b017b2894ad69040fec8b623eb4bd52",
  30. "_spec": "ajv@^6.1.0",
  31. "_where": "/var/www/html/mdch.sipadu/node_modules/schema-utils",
  32. "author": {
  33. "name": "Evgeny Poberezkin"
  34. },
  35. "bugs": {
  36. "url": "https://github.com/epoberezkin/ajv/issues"
  37. },
  38. "bundleDependencies": false,
  39. "dependencies": {
  40. "fast-deep-equal": "^2.0.1",
  41. "fast-json-stable-stringify": "^2.0.0",
  42. "json-schema-traverse": "^0.4.1",
  43. "uri-js": "^4.2.2"
  44. },
  45. "deprecated": false,
  46. "description": "Another JSON Schema Validator",
  47. "devDependencies": {
  48. "ajv-async": "^1.0.0",
  49. "bluebird": "^3.5.3",
  50. "brfs": "^2.0.0",
  51. "browserify": "^16.2.0",
  52. "chai": "^4.0.1",
  53. "coveralls": "^3.0.1",
  54. "del-cli": "^2.0.0",
  55. "dot": "^1.0.3",
  56. "eslint": "^6.0.0",
  57. "gh-pages-generator": "^0.2.3",
  58. "glob": "^7.0.0",
  59. "if-node-version": "^1.0.0",
  60. "js-beautify": "^1.7.3",
  61. "jshint": "^2.10.2",
  62. "json-schema-test": "^2.0.0",
  63. "karma": "^4.0.1",
  64. "karma-chrome-launcher": "^2.2.0",
  65. "karma-mocha": "^1.1.1",
  66. "karma-sauce-launcher": "^2.0.0",
  67. "mocha": "^6.0.0",
  68. "nyc": "^14.0.0",
  69. "pre-commit": "^1.1.1",
  70. "require-globify": "^1.3.0",
  71. "typescript": "^2.8.3",
  72. "uglify-js": "^3.3.24",
  73. "watch": "^1.0.0"
  74. },
  75. "files": [
  76. "lib/",
  77. "dist/",
  78. "scripts/",
  79. "LICENSE",
  80. ".tonic_example.js"
  81. ],
  82. "homepage": "https://github.com/epoberezkin/ajv",
  83. "keywords": [
  84. "JSON",
  85. "schema",
  86. "validator",
  87. "validation",
  88. "jsonschema",
  89. "json-schema",
  90. "json-schema-validator",
  91. "json-schema-validation"
  92. ],
  93. "license": "MIT",
  94. "main": "lib/ajv.js",
  95. "name": "ajv",
  96. "nyc": {
  97. "exclude": [
  98. "**/spec/**",
  99. "node_modules"
  100. ],
  101. "reporter": [
  102. "lcov",
  103. "text-summary"
  104. ]
  105. },
  106. "repository": {
  107. "type": "git",
  108. "url": "git+https://github.com/epoberezkin/ajv.git"
  109. },
  110. "scripts": {
  111. "build": "del-cli lib/dotjs/*.js \"!lib/dotjs/index.js\" && node scripts/compile-dots.js",
  112. "bundle": "del-cli dist && node ./scripts/bundle.js . Ajv pure_getters",
  113. "bundle-beautify": "node ./scripts/bundle.js js-beautify",
  114. "eslint": "eslint lib/{compile/,}*.js spec/{**/,}*.js scripts --ignore-pattern spec/JSON-Schema-Test-Suite",
  115. "jshint": "jshint lib/{compile/,}*.js",
  116. "lint": "npm run jshint && npm run eslint",
  117. "prepublish": "npm run build && npm run bundle",
  118. "test": "npm run lint && npm run build && npm run test-all",
  119. "test-all": "npm run test-ts && npm run test-cov && if-node-version 10 npm run test-browser",
  120. "test-browser": "del-cli .browser && npm run bundle && scripts/prepare-tests && npm run test-karma",
  121. "test-cov": "nyc npm run test-spec",
  122. "test-debug": "npm run test-spec -- --inspect-brk",
  123. "test-fast": "AJV_FAST_TEST=true npm run test-spec",
  124. "test-karma": "karma start",
  125. "test-spec": "mocha spec/{**/,}*.spec.js -R spec",
  126. "test-ts": "tsc --target ES5 --noImplicitAny --noEmit spec/typescript/index.ts",
  127. "watch": "watch \"npm run build\" ./lib/dot"
  128. },
  129. "tonicExampleFilename": ".tonic_example.js",
  130. "typings": "lib/ajv.d.ts",
  131. "version": "6.10.2"
  132. }