package.json 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. {
  2. "_args": [
  3. [
  4. "cache-loader@2.0.1",
  5. "/Users/lihai/jolijoli/pad_spa"
  6. ]
  7. ],
  8. "_development": true,
  9. "_from": "cache-loader@2.0.1",
  10. "_id": "cache-loader@2.0.1",
  11. "_inBundle": false,
  12. "_integrity": "sha1-V1j0GmLXwjlB48PHAW5vrrA6ywc=",
  13. "_location": "/cache-loader",
  14. "_phantomChildren": {
  15. "ajv": "6.10.0",
  16. "ajv-errors": "1.0.1",
  17. "ajv-keywords": "3.4.0"
  18. },
  19. "_requested": {
  20. "type": "version",
  21. "registry": true,
  22. "raw": "cache-loader@2.0.1",
  23. "name": "cache-loader",
  24. "escapedName": "cache-loader",
  25. "rawSpec": "2.0.1",
  26. "saveSpec": null,
  27. "fetchSpec": "2.0.1"
  28. },
  29. "_requiredBy": [
  30. "/@vue/cli-service"
  31. ],
  32. "_resolved": "https://registry.npm.taobao.org/cache-loader/download/cache-loader-2.0.1.tgz",
  33. "_spec": "2.0.1",
  34. "_where": "/Users/lihai/jolijoli/pad_spa",
  35. "author": {
  36. "name": "Tobias Koppers @sokra"
  37. },
  38. "babel": {
  39. "presets": [
  40. [
  41. "@babel/preset-env",
  42. {
  43. "targets": {
  44. "node": "6.9.0"
  45. },
  46. "useBuiltIns": "usage"
  47. }
  48. ]
  49. ]
  50. },
  51. "bugs": {
  52. "url": "https://github.com/webpack-contrib/cache-loader/issues"
  53. },
  54. "commitlint": {
  55. "extends": [
  56. "@commitlint/config-conventional"
  57. ]
  58. },
  59. "dependencies": {
  60. "loader-utils": "^1.1.0",
  61. "mkdirp": "^0.5.1",
  62. "neo-async": "^2.6.0",
  63. "normalize-path": "^3.0.0",
  64. "schema-utils": "^1.0.0"
  65. },
  66. "description": "Caches the result of following loaders on disk.",
  67. "devDependencies": {
  68. "@babel/cli": "^7.2.3",
  69. "@babel/core": "^7.2.2",
  70. "@babel/polyfill": "^7.2.3",
  71. "@babel/preset-env": "^7.2.3",
  72. "@commitlint/cli": "^7.2.1",
  73. "@commitlint/config-conventional": "^7.1.2",
  74. "@webpack-contrib/defaults": "^3.0.5",
  75. "@webpack-contrib/eslint-config-webpack": "^3.0.0",
  76. "babel-core": "^7.0.0-bridge.0",
  77. "babel-jest": "^23.6.0",
  78. "babel-loader": "^8.0.4",
  79. "cross-env": "^5.0.0",
  80. "del": "^3.0.0",
  81. "del-cli": "^1.0.0",
  82. "eslint": "^5.10.0",
  83. "eslint-config-webpack": "^1.0.0",
  84. "eslint-plugin-import": "^2.0.0",
  85. "eslint-plugin-prettier": "^3.0.0",
  86. "husky": "^1.2.1",
  87. "jest": "^23.6.0",
  88. "lint-staged": "^8.1.0",
  89. "memory-fs": "^0.4.1",
  90. "pre-commit": "^1.0.0",
  91. "prettier": "^1.15.2",
  92. "standard-version": "^4.0.0",
  93. "webpack": "^4.27.1",
  94. "webpack-cli": "^3.1.2"
  95. },
  96. "engines": {
  97. "node": ">= 6.9.0"
  98. },
  99. "files": [
  100. "dist"
  101. ],
  102. "homepage": "https://github.com/webpack-contrib/cache-loader",
  103. "husky": {
  104. "hooks": {
  105. "pre-commit": "lint-staged"
  106. }
  107. },
  108. "keywords": [
  109. "webpack"
  110. ],
  111. "license": "MIT",
  112. "lint-staged": {
  113. "*.js": [
  114. "eslint --fix",
  115. "git add"
  116. ]
  117. },
  118. "main": "dist/cjs.js",
  119. "name": "cache-loader",
  120. "peerDependencies": {
  121. "webpack": "^4.0.0"
  122. },
  123. "repository": {
  124. "type": "git",
  125. "url": "git+https://github.com/webpack-contrib/cache-loader.git"
  126. },
  127. "scripts": {
  128. "build": "cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files",
  129. "ci:coverage": "npm run test:coverage -- --runInBand",
  130. "ci:lint": "npm run lint && npm run security",
  131. "ci:lint:commits": "commitlint --from=origin/master --to=${CIRCLE_SHA1}",
  132. "ci:test": "npm run test -- --runInBand",
  133. "clean": "del-cli dist",
  134. "commitlint": "commitlint",
  135. "commitmsg": "commitlint -e $GIT_PARAMS",
  136. "defaults": "webpack-defaults",
  137. "lint": "eslint --cache src test",
  138. "prebuild": "npm run clean",
  139. "prepublish": "npm run build",
  140. "release": "standard-version",
  141. "security": "npm audit",
  142. "start": "npm run build -- -w",
  143. "test": "jest",
  144. "test:coverage": "jest --collectCoverageFrom='src/**/*.js' --coverage",
  145. "test:watch": "jest --watch"
  146. },
  147. "version": "2.0.1"
  148. }