forked from neutrinojs/webpack-chain
-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
46 lines (46 loc) · 1.21 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
{
"name": "webpack-chain",
"version": "5.2.4",
"main": "src/Config.js",
"typings": "types/index.d.ts",
"repository": "neutrinojs/webpack-chain",
"keywords": [
"webpack",
"config",
"chain",
"fluent",
"api"
],
"files": [
"src",
"types/*.d.ts"
],
"author": "Eli Perelman <[email protected]>",
"license": "MPL-2.0",
"scripts": {
"test": "ava test",
"test:types": "tsc -p ./types/test/tsconfig.json",
"lint": "eslint --cache --report-unused-disable-directives --format codeframe \".*.js\" src test",
"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.0"
},
"devDependencies": {
"@types/node": "^10.12.17",
"@types/webpack": "^4.4.21",
"auto-changelog": "^1.8.0",
"ava": "^1.0.0",
"eslint": "^5.6.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-ava": "^6.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.0",
"prettier": "^1.14.3",
"typescript": "^3.2.2",
"webpack": "^4.20.2"
}
}