package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "webpack-merge",
  3. "description": "Variant of merge that's useful for webpack configuration",
  4. "author": "Juho Vepsalainen <bebraw@gmail.com>",
  5. "version": "5.10.0",
  6. "scripts": {
  7. "build": "tsc",
  8. "format": "prettier . --write --ignore-path .gitignore",
  9. "start": "tsdx watch",
  10. "test": "tsdx test",
  11. "prepare": "npm run build"
  12. },
  13. "main": "dist/index.js",
  14. "typings": "dist/index.d.ts",
  15. "files": [
  16. "dist"
  17. ],
  18. "dependencies": {
  19. "clone-deep": "^4.0.1",
  20. "flat": "^5.0.2",
  21. "wildcard": "^2.0.0"
  22. },
  23. "devDependencies": {
  24. "@types/estree": "0.0.48",
  25. "@types/flat": "^5.0.3",
  26. "husky": "^6.0.0",
  27. "prettier": "^2.3.1",
  28. "tsdx": "^0.14.1",
  29. "tslib": "^2.2.0",
  30. "typescript": "^4.3.2",
  31. "webpack": "^5.38.1"
  32. },
  33. "repository": {
  34. "type": "git",
  35. "url": "https://github.com/survivejs/webpack-merge.git"
  36. },
  37. "homepage": "https://github.com/survivejs/webpack-merge",
  38. "bugs": {
  39. "url": "https://github.com/survivejs/webpack-merge/issues"
  40. },
  41. "keywords": [
  42. "webpack",
  43. "merge"
  44. ],
  45. "engines": {
  46. "node": ">=10.0.0"
  47. },
  48. "jest": {
  49. "collectCoverage": true,
  50. "collectCoverageFrom": [
  51. "dist/*.js"
  52. ]
  53. },
  54. "license": "MIT",
  55. "husky": {
  56. "hooks": {
  57. "pre-commit": "npm run test"
  58. }
  59. }
  60. }