package.json 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. {
  2. "name": "hard-source-webpack-plugin",
  3. "version": "0.13.1",
  4. "description": "Hard cache the source of modules in webpack.",
  5. "keywords": [
  6. "webpack",
  7. "disk",
  8. "iterative",
  9. "build",
  10. "cache",
  11. "plugin"
  12. ],
  13. "main": "index.js",
  14. "files": [
  15. "index.js",
  16. "lib"
  17. ],
  18. "repository": {
  19. "type": "git",
  20. "url": "https://github.com/mzgoddard/hard-source-webpack-plugin"
  21. },
  22. "bugs": {
  23. "url": "https://github.com/mzgoddard/hard-source-webpack-plugin/issues"
  24. },
  25. "scripts": {
  26. "commitmsg": "commitlint -e $GIT_PARAMS",
  27. "commitlint-travis": "commitlint-travis",
  28. "lint": "prettier --list-different --single-quote --trailing-comma all {index.js,lib/*.js,lib/util/*.js,test/*.js,test/*/*.js,bin/*.js}",
  29. "lint:fix": "prettier --write --single-quote --trailing-comma all {index.js,lib/*.js,lib/util/*.js,test/*.js,test/*/*.js,bin/*.js}",
  30. "test": "NODE_ENV=test mocha tests/*.js"
  31. },
  32. "author": "Michael \"Z\" Goddard <mzgoddard@gmail.com>",
  33. "license": "ISC",
  34. "engines": {
  35. "node": ">=8.0.0"
  36. },
  37. "devDependencies": {
  38. "@commitlint/cli": "^7.0.0",
  39. "@commitlint/config-conventional": "^7.0.0",
  40. "@commitlint/travis-cli": "^7.0.0",
  41. "babel-core": "^6.26.0",
  42. "babel-loader": "^7.1.4",
  43. "babel-preset-env": "^1.6.1",
  44. "cacache": "^11.0.2",
  45. "chai": "^3.5.0",
  46. "copy-webpack-plugin": "^4.5.1",
  47. "css-loader": "^1.0.0",
  48. "extract-text-webpack-plugin": "^3.0.0 || ^2.0.0 || ^1.0.1",
  49. "file-loader": "^1.0.0 || ^0.11.0 || ^0.10.1",
  50. "html-webpack-plugin": "^3.2.0 || ^2.22.0",
  51. "husky": "^0.14.3",
  52. "level": "^4.0.0",
  53. "memory-fs": "^0.4.1",
  54. "mini-css-extract-plugin": "^0.4.0",
  55. "mocha": "^3.0.2",
  56. "prettier": "^1.12.1",
  57. "source-map": "^0.5.6",
  58. "standard-version": "^4.4.0",
  59. "style-loader": "^0.14.0",
  60. "webpack": "^4.0.0 || ^4.0.0-beta.* || ^3.8.1 || ^3.0.0 || ^3.0.0-rc.0 || ^2.1.0 || ^1.13.1",
  61. "webpack-cli": "^3.0.0",
  62. "webpack-isomorphic-tools": "^3.0.0",
  63. "worker-loader": "^2.0.0"
  64. },
  65. "peerDependencies": {
  66. "webpack": "*"
  67. },
  68. "dependencies": {
  69. "chalk": "^2.4.1",
  70. "find-cache-dir": "^2.0.0",
  71. "graceful-fs": "^4.1.11",
  72. "lodash": "^4.15.0",
  73. "mkdirp": "^0.5.1",
  74. "node-object-hash": "^1.2.0",
  75. "parse-json": "^4.0.0",
  76. "pkg-dir": "^3.0.0",
  77. "rimraf": "^2.6.2",
  78. "semver": "^5.6.0",
  79. "tapable": "^1.0.0-beta.5",
  80. "webpack-sources": "^1.0.1",
  81. "write-json-file": "^2.3.0"
  82. }
  83. }