package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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.8.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. "wildcard": "^2.0.0"
  21. },
  22. "devDependencies": {
  23. "@types/estree": "0.0.48",
  24. "husky": "^6.0.0",
  25. "prettier": "^2.3.1",
  26. "tsdx": "^0.14.1",
  27. "tslib": "^2.2.0",
  28. "typescript": "^4.3.2",
  29. "webpack": "^5.38.1"
  30. },
  31. "repository": {
  32. "type": "git",
  33. "url": "https://github.com/survivejs/webpack-merge.git"
  34. },
  35. "homepage": "https://github.com/survivejs/webpack-merge",
  36. "bugs": {
  37. "url": "https://github.com/survivejs/webpack-merge/issues"
  38. },
  39. "keywords": [
  40. "webpack",
  41. "merge"
  42. ],
  43. "engines": {
  44. "node": ">=10.0.0"
  45. },
  46. "jest": {
  47. "collectCoverage": true,
  48. "collectCoverageFrom": [
  49. "dist/*.js"
  50. ]
  51. },
  52. "license": "MIT",
  53. "husky": {
  54. "hooks": {
  55. "pre-commit": "npm run test"
  56. }
  57. }
  58. }