package.json 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. {
  2. "_from": "@webpack-contrib/schema-utils@^1.0.0-beta.0",
  3. "_id": "@webpack-contrib/schema-utils@1.0.0-beta.0",
  4. "_inBundle": false,
  5. "_integrity": "sha512-LonryJP+FxQQHsjGBi6W786TQB1Oym+agTpY0c+Kj8alnIw+DLUJb6SI8Y1GHGhLCH1yPRrucjObUmxNICQ1pg==",
  6. "_location": "/@webpack-contrib/schema-utils",
  7. "_phantomChildren": {
  8. "fast-json-stable-stringify": "2.1.0",
  9. "uri-js": "4.4.1"
  10. },
  11. "_requested": {
  12. "type": "range",
  13. "registry": true,
  14. "raw": "@webpack-contrib/schema-utils@^1.0.0-beta.0",
  15. "name": "@webpack-contrib/schema-utils",
  16. "escapedName": "@webpack-contrib%2fschema-utils",
  17. "scope": "@webpack-contrib",
  18. "rawSpec": "^1.0.0-beta.0",
  19. "saveSpec": null,
  20. "fetchSpec": "^1.0.0-beta.0"
  21. },
  22. "_requiredBy": [
  23. "/mini-css-extract-plugin"
  24. ],
  25. "_resolved": "https://registry.npmmirror.com/@webpack-contrib/schema-utils/-/schema-utils-1.0.0-beta.0.tgz",
  26. "_shasum": "bf9638c9464d177b48209e84209e23bee2eb4f65",
  27. "_spec": "@webpack-contrib/schema-utils@^1.0.0-beta.0",
  28. "_where": "D:\\yf\\项目\\智慧工地\\代码库\\zhgd-front\\crm_web\\node_modules\\mini-css-extract-plugin",
  29. "author": {
  30. "name": "Webpack Contrib",
  31. "url": "https://github.com/webpack-contrib"
  32. },
  33. "bugs": {
  34. "url": "https://github.com/webpack-contrib/schema-utils/issues"
  35. },
  36. "bundleDependencies": false,
  37. "dependencies": {
  38. "ajv": "^6.1.0",
  39. "ajv-keywords": "^3.1.0",
  40. "chalk": "^2.3.2",
  41. "strip-ansi": "^4.0.0",
  42. "text-table": "^0.2.0",
  43. "webpack-log": "^1.1.2"
  44. },
  45. "deprecated": false,
  46. "description": "Webpack Schema Validation Utilities",
  47. "devDependencies": {
  48. "@commitlint/cli": "^5.2.8",
  49. "@commitlint/config-angular": "^5.1.1",
  50. "@webpack-contrib/eslint-config-webpack": "^2.0.2",
  51. "babel-cli": "^6.26.0",
  52. "babel-jest": "^22.4.3",
  53. "babel-plugin-transform-object-rest-spread": "^6.26.0",
  54. "babel-polyfill": "^6.26.0",
  55. "babel-preset-env": "^1.6.1",
  56. "conventional-github-releaser": "^2.0.0",
  57. "cross-env": "^5.1.3",
  58. "del": "^3.0.0",
  59. "del-cli": "^1.1.0",
  60. "eslint": "^4.17.0",
  61. "eslint-plugin-import": "^2.8.0",
  62. "eslint-plugin-prettier": "^2.6.0",
  63. "husky": "^0.14.3",
  64. "jest": "^22.4.3",
  65. "lint-staged": "^6.1.0",
  66. "memory-fs": "^0.4.1",
  67. "nsp": "^3.1.0",
  68. "pre-commit": "^1.2.2",
  69. "prettier": "^1.10.2",
  70. "standard-version": "^4.3.0",
  71. "webpack": "^4.4.1",
  72. "webpack-defaults": "^2.1.4"
  73. },
  74. "engines": {
  75. "node": ">= 6.9.0 || >= 8.9.0"
  76. },
  77. "files": [
  78. "dist/",
  79. "schema/"
  80. ],
  81. "homepage": "https://github.com/webpack-contrib/schema-utils",
  82. "keywords": [
  83. "webpack"
  84. ],
  85. "license": "MIT",
  86. "lint-staged": {
  87. "*.js": [
  88. "eslint --fix",
  89. "git add"
  90. ]
  91. },
  92. "main": "dist/cjs.js",
  93. "name": "@webpack-contrib/schema-utils",
  94. "peerDependencies": {
  95. "webpack": "^3.0.0 || ^4.0.0"
  96. },
  97. "pre-commit": "lint-staged",
  98. "repository": {
  99. "type": "git",
  100. "url": "git+https://github.com/webpack-contrib/schema-utils.git"
  101. },
  102. "scripts": {
  103. "build": "cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files",
  104. "ci:coverage": "npm run test:coverage -- --runInBand",
  105. "ci:lint": "npm run lint && npm run security",
  106. "ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}",
  107. "ci:test": "npm run test -- --runInBand",
  108. "clean": "del-cli dist",
  109. "commitlint": "commitlint",
  110. "commitmsg": "commitlint -e $GIT_PARAMS",
  111. "defaults": "webpack-defaults",
  112. "lint": "eslint --cache src test",
  113. "lint-staged": "lint-staged",
  114. "prebuild": "npm run clean",
  115. "prepublish": "npm run build",
  116. "release": "standard-version",
  117. "release:ci": "conventional-github-releaser -p angular",
  118. "release:validate": "commitlint --from=$(git describe --tags --abbrev=0) --to=$(git rev-parse HEAD)",
  119. "security": "nsp check",
  120. "start": "npm run build -- -w",
  121. "test": "jest",
  122. "test:coverage": "jest --collectCoverageFrom='src/**/*.js' --coverage",
  123. "test:watch": "jest --watch"
  124. },
  125. "version": "1.0.0-beta.0"
  126. }