-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
98 lines (98 loc) · 2.3 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "webpack-config-utils",
"version": "0.0.0-semantically-released",
"description": "Utilities to help your webpack config be easier to read",
"main": "dist/index.js",
"scripts": {
"start": "nps",
"test": "nps test"
},
"files": [
"dist"
],
"keywords": [],
"author": "Kent C. Dodds <[email protected]> (http://kentcdodds.com/)",
"license": "MIT",
"dependencies": {
"webpack-combine-loaders": "2.0.4"
},
"bundledDependencies": [
"webpack-combine-loaders"
],
"devDependencies": {
"all-contributors-cli": "^3.0.0",
"ava": "^0.15.2",
"babel-cli": "^6.7.7",
"babel-plugin-istanbul": "^1.0.3",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-2": "^6.5.0",
"babel-register": "^6.7.2",
"codecov": "^1.0.1",
"commitizen": "^2.8.1",
"condition-node-version": "^1.3.0",
"cross-env": "^2.0.0",
"cz-conventional-changelog": "^1.1.6",
"eslint": "^3.1.1",
"eslint-config-kentcdodds": "^8.1.2",
"ghooks": "^1.2.1",
"lodash": "4.13.1",
"nps": "^5.3.1",
"nps-utils": "^1.2.0",
"nyc": "^7.0.0",
"opt-cli": "^1.4.2",
"semantic-release": "^6.2.1",
"validate-commit-msg": "^2.6.1"
},
"eslintConfig": {
"extends": [
"kentcdodds",
"kentcdodds/ava"
],
"rules": {
"import/prefer-default-export": 0
}
},
"nyc": {
"all": true,
"check-coverage": true,
"branches": 100,
"function": 100,
"lines": 100,
"statements": 100,
"reporter": [
"text",
"lcov"
],
"include": [
"src"
],
"sourceMap": false,
"instrument": false,
"require": [
"babel-register"
]
},
"release": {
"verifyConditions": {
"path": "condition-node-version",
"node": "^6"
}
},
"config": {
"ghooks": {
"commit-msg": "opt --in commit-msg --exec \"validate-commit-msg\"",
"pre-commit": "opt --in pre-commit --exec \"npm start validate\""
},
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/kentcdodds/webpack-config-utils.git"
},
"bugs": {
"url": "https://github.com/kentcdodds/webpack-config-utils/issues"
},
"homepage": "https://github.com/kentcdodds/webpack-config-utils#readme"
}