forked from githoniel/webpack-chain
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
54 lines (54 loc) · 1.4 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
{
"name": "webpack-5-chain",
"version": "8.0.2",
"main": "src/Config.js",
"typings": "types/index.d.ts",
"repository": "sorrycc/webpack-chain",
"keywords": [
"webpack",
"config",
"chain",
"fluent",
"api"
],
"engines": {
"node": ">=10"
},
"files": [
"src",
"types/*.d.ts"
],
"author": "Eli Perelman <[email protected]>",
"license": "MPL-2.0",
"scripts": {
"fix": "yarn lint:fix && yarn style:fix",
"lint": "eslint --cache --max-warnings 0 --format codeframe .",
"lint:fix": "yarn lint --fix",
"style": "prettier --check .",
"style:fix": "prettier --write .",
"test": "jest",
"test:types": "tsc -p ./types/test/tsconfig.json",
"changelog": "auto-changelog --remote upstream --commit-limit false",
"version": "yarn changelog --package && git add CHANGELOG.md"
},
"dependencies": {
"deepmerge": "^1.5.2",
"javascript-stringify": "^2.0.1"
},
"devDependencies": {
"@types/enhanced-resolve": "^3.0.6",
"@types/tapable": "^1.0.6",
"@types/webpack": "^5.0.0",
"auto-changelog": "^2.2.0",
"enhanced-resolve": "^5.8.2",
"eslint": "^7.5.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.0.0",
"jest": "^27.0.0",
"prettier": "^2.0.5",
"typescript": "^4.0.0",
"webpack": "^5.0.0"
}
}