-
-
Notifications
You must be signed in to change notification settings - Fork 115
/
package.json
60 lines (60 loc) · 1.28 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"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": "dts watch",
"test": "dts 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.1"
},
"devDependencies": {
"@types/estree": "1.0.2",
"@types/flat": "^5.0.3",
"dts-cli": "^2.0.3",
"husky": "^6.0.0",
"prettier": "^3.0.3",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"webpack": "^5.89.0"
},
"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": ">=18.0.0"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"dist/*.js"
]
},
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "npm run test"
}
}
}