123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- {
- "name": "webpack-merge",
- "description": "Variant of merge that's useful for webpack configuration",
- "author": "Juho Vepsalainen <bebraw@gmail.com>",
- "version": "5.10.0",
- "scripts": {
- "build": "tsc",
- "format": "prettier . --write --ignore-path .gitignore",
- "start": "tsdx watch",
- "test": "tsdx test",
- "prepare": "npm run build"
- },
- "main": "dist/index.js",
- "typings": "dist/index.d.ts",
- "files": [
- "dist"
- ],
- "dependencies": {
- "clone-deep": "^4.0.1",
- "flat": "^5.0.2",
- "wildcard": "^2.0.0"
- },
- "devDependencies": {
- "@types/estree": "0.0.48",
- "@types/flat": "^5.0.3",
- "husky": "^6.0.0",
- "prettier": "^2.3.1",
- "tsdx": "^0.14.1",
- "tslib": "^2.2.0",
- "typescript": "^4.3.2",
- "webpack": "^5.38.1"
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/survivejs/webpack-merge.git"
- },
- "homepage": "https://github.com/survivejs/webpack-merge",
- "bugs": {
- "url": "https://github.com/survivejs/webpack-merge/issues"
- },
- "keywords": [
- "webpack",
- "merge"
- ],
- "engines": {
- "node": ">=10.0.0"
- },
- "jest": {
- "collectCoverage": true,
- "collectCoverageFrom": [
- "dist/*.js"
- ]
- },
- "license": "MIT",
- "husky": {
- "hooks": {
- "pre-commit": "npm run test"
- }
- }
- }
|