package.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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": "4.2.2",
  6. "scripts": {
  7. "build": "babel src -d lib",
  8. "watch": "npm-watch",
  9. "test": "mocha tests/test-*",
  10. "test:coverage": "istanbul cover node_modules/.bin/_mocha tests/test-*",
  11. "test:lint": "eslint src/ tests/ --cache",
  12. "preversion": "npm run test:lint && npm run build && npm test && git commit --allow-empty -am \"Update lib\""
  13. },
  14. "main": "lib/index.js",
  15. "files": [
  16. "lib"
  17. ],
  18. "dependencies": {
  19. "lodash": "^4.17.15"
  20. },
  21. "devDependencies": {
  22. "babel-cli": "^6.26.0",
  23. "babel-plugin-lodash": "^3.3.2",
  24. "babel-preset-es2015": "^6.24.1",
  25. "copy-webpack-plugin": "^4.4.1",
  26. "eslint": "^3.19.0",
  27. "eslint-config-airbnb": "^14.1.0",
  28. "eslint-plugin-import": "^2.9.0",
  29. "eslint-plugin-jsx-a11y": "^3.0.2",
  30. "eslint-plugin-react": "^6.10.3",
  31. "git-prepush-hook": "^1.0.2",
  32. "istanbul": "^0.4.5",
  33. "mocha": "^3.5.3",
  34. "npm-watch": "^0.1.9",
  35. "webpack": "^1.15.0"
  36. },
  37. "repository": {
  38. "type": "git",
  39. "url": "https://github.com/survivejs/webpack-merge.git"
  40. },
  41. "homepage": "https://github.com/survivejs/webpack-merge",
  42. "bugs": {
  43. "url": "https://github.com/survivejs/webpack-merge/issues"
  44. },
  45. "keywords": [
  46. "webpack",
  47. "merge"
  48. ],
  49. "license": "MIT",
  50. "pre-push": [
  51. "test:lint",
  52. "build",
  53. "test"
  54. ],
  55. "watch": {
  56. "build": {
  57. "patterns": [
  58. "src/**/*.js"
  59. ]
  60. },
  61. "test": {
  62. "patterns": [
  63. "src/**/*.js",
  64. "tests/**/*.js"
  65. ]
  66. },
  67. "test:lint": {
  68. "patterns": [
  69. "src/**/*.js",
  70. "tests/**/*.js"
  71. ]
  72. }
  73. }
  74. }