forked from kentcdodds/nps-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.17 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
{
"name": "nps-utils",
"version": "0.0.0-semantically-released",
"description": "Utilities for nps (npm-package-scripts)",
"main": "dist/index.js",
"scripts": {
"start": "nps",
"test": "nps test",
"commitmsg": "opt --in commit-msg --exec \"validate-commit-msg\"",
"precommit": "opt --in pre-commit --exec \"lint-staged && npm start validate\""
},
"files": [
"dist"
],
"keywords": [],
"author": "Kent C. Dodds <[email protected]> (http://kentcdodds.com/)",
"license": "MIT",
"dependencies": {
"any-shell-escape": "^0.1.1",
"common-tags": "^1.4.0",
"concurrently": "^3.4.0",
"cpy-cli": "^1.0.1",
"cross-env": "^3.1.4",
"is-windows": "^1.0.0",
"mkdirp": "^0.5.1",
"ncp": "2.0.0",
"opn-cli": "^3.1.0",
"rimraf": "^2.6.1"
},
"devDependencies": {
"all-contributors-cli": "^4.0.1",
"babel-cli": "^6.18.0",
"babel-jest": "^19.0.0",
"babel-preset-env": "^1.1.11",
"babel-preset-stage-2": "^6.18.0",
"babel-register": "^6.23.0",
"codecov": "^1.0.1",
"commitizen": "^2.8.6",
"cz-conventional-changelog": "^2.0.0",
"esdoc": "^0.5.2",
"eslint": "^3.16.1",
"eslint-config-kentcdodds": "^12.0.0",
"husky": "^0.13.1",
"jest-cli": "^19.0.2",
"lint-staged": "^3.3.1",
"nps": "^5.0.3",
"opt-cli": "^1.5.1",
"prettier-eslint-cli": "^3.1.2",
"semantic-release": "^6.3.6",
"validate-commit-msg": "^2.8.2"
},
"eslintConfig": {
"extends": [
"kentcdodds",
"kentcdodds/jest"
],
"rules": {
"max-len": [
2,
80
]
}
},
"jest": {
"testEnvironment": "node",
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.js": [
"prettier-eslint --write",
"git add"
]
},
"repository": "https://github.com/kentcdodds/nps-utils.git",
"bugs": {
"url": "https://github.com/kentcdodds/nps-utils/issues"
},
"homepage": "https://github.com/kentcdodds/nps-utils#readme"
}