package.json 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. {
  2. "name": "cache-loader",
  3. "version": "4.1.0",
  4. "description": "Caches the result of following loaders on disk.",
  5. "license": "MIT",
  6. "repository": "webpack-contrib/cache-loader",
  7. "author": "Tobias Koppers @sokra",
  8. "homepage": "https://github.com/webpack-contrib/cache-loader",
  9. "bugs": "https://github.com/webpack-contrib/cache-loader/issues",
  10. "main": "dist/cjs.js",
  11. "engines": {
  12. "node": ">= 8.9.0"
  13. },
  14. "scripts": {
  15. "start": "npm run build -- -w",
  16. "prebuild": "npm run clean",
  17. "build": "cross-env NODE_ENV=production babel src -d dist --ignore \"src/**/*.test.js\" --copy-files",
  18. "clean": "del-cli dist",
  19. "commitlint": "commitlint --from=master",
  20. "lint:prettier": "prettier \"{**/*,*}.{js,json,md,yml,css}\" --list-different",
  21. "lint:js": "eslint --cache src test",
  22. "lint": "npm-run-all -l -p \"lint:**\"",
  23. "prepare": "npm run build",
  24. "release": "standard-version",
  25. "security": "npm audit",
  26. "test:only": "cross-env NODE_ENV=test jest",
  27. "test:watch": "cross-env NODE_ENV=test jest --watch",
  28. "test:coverage": "cross-env NODE_ENV=test jest --collectCoverageFrom=\"src/**/*.js\" --coverage",
  29. "pretest": "npm run lint",
  30. "test": "cross-env NODE_ENV=test npm run test:coverage",
  31. "defaults": "webpack-defaults"
  32. },
  33. "files": [
  34. "dist"
  35. ],
  36. "peerDependencies": {
  37. "webpack": "^4.0.0"
  38. },
  39. "dependencies": {
  40. "buffer-json": "^2.0.0",
  41. "find-cache-dir": "^3.0.0",
  42. "loader-utils": "^1.2.3",
  43. "mkdirp": "^0.5.1",
  44. "neo-async": "^2.6.1",
  45. "schema-utils": "^2.0.0"
  46. },
  47. "devDependencies": {
  48. "@babel/cli": "^7.5.5",
  49. "@babel/core": "^7.5.5",
  50. "@babel/preset-env": "^7.5.5",
  51. "@commitlint/cli": "^8.1.0",
  52. "@commitlint/config-conventional": "^8.1.0",
  53. "@webpack-contrib/defaults": "^5.0.2",
  54. "@webpack-contrib/eslint-config-webpack": "^3.0.0",
  55. "babel-jest": "^24.8.0",
  56. "babel-loader": "^8.0.6",
  57. "commitlint-azure-pipelines-cli": "^1.0.2",
  58. "cross-env": "^5.2.0",
  59. "del": "^5.0.0",
  60. "del-cli": "^2.0.0",
  61. "eslint": "^6.0.1",
  62. "eslint-config-prettier": "^6.0.0",
  63. "eslint-plugin-import": "^2.18.0",
  64. "file-loader": "^4.1.0",
  65. "husky": "^3.0.0",
  66. "jest": "^24.8.0",
  67. "jest-junit": "^6.4.0",
  68. "lint-staged": "^9.2.0",
  69. "memory-fs": "^0.4.1",
  70. "normalize-path": "^3.0.0",
  71. "npm-run-all": "^4.1.5",
  72. "prettier": "^1.18.2",
  73. "standard-version": "^6.0.1",
  74. "uuid": "^3.3.2",
  75. "webpack": "^4.36.1",
  76. "webpack-cli": "^3.3.6"
  77. },
  78. "keywords": [
  79. "webpack"
  80. ]
  81. }