package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "case-sensitive-paths-webpack-plugin",
  3. "version": "2.4.0",
  4. "description": "Enforces module path case sensitivity in Webpack",
  5. "engines": {
  6. "node": ">=4"
  7. },
  8. "main": "index.js",
  9. "scripts": {
  10. "test": "mocha test/",
  11. "lint": "eslint index.js",
  12. "lintfix": "eslint --fix index.js test/index.js",
  13. "version": "auto-changelog -p && git add CHANGELOG.md"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "git+https://github.com/Urthen/case-sensitive-paths-webpack-plugin.git"
  18. },
  19. "keywords": [
  20. "webpack",
  21. "plugin",
  22. "case sensitive",
  23. "import",
  24. "require"
  25. ],
  26. "files": [
  27. "index.js"
  28. ],
  29. "author": "Michael Pratt",
  30. "license": "MIT",
  31. "bugs": {
  32. "url": "https://github.com/Urthen/case-sensitive-paths-webpack-plugin/issues"
  33. },
  34. "homepage": "https://github.com/Urthen/case-sensitive-paths-webpack-plugin#readme",
  35. "devDependencies": {
  36. "auto-changelog": "2.2.1",
  37. "eslint": "7.20.0",
  38. "eslint-config-airbnb-base": "14.2.1",
  39. "eslint-plugin-import": "2.22.1",
  40. "fs-extra": "9.1.0",
  41. "mocha": "8.3.0",
  42. "webpack": "5.23.0"
  43. },
  44. "auto-changelog": {
  45. "commitLimit": false
  46. }
  47. }