forked from neutrinojs/webpack-chain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 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
{
"name": "webpack-chain",
"version": "6.0.0",
"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": "^12.7.2",
"@types/webpack": "^4.32.2",
"auto-changelog": "^1.15.0",
"ava": "^1.4.1",
"babel-eslint": "^10.0.2",
"eslint": "^6.0.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-ava": "^7.1.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.0",
"prettier": "^1.18.2",
"typescript": "^3.5.3",
"webpack": "^4.39.2"
}
}