-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.48 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
99
{
"name": "p-s",
"version": "0.0.0-semantically-released",
"description": "All the benefits of npm scripts without the cost of a bloated package.json and limits of json",
"main": "dist/index",
"scripts": {
"start": "nps",
"test": "nps test",
"localstart": "npm start build && node ./dist/bin/nps.js",
"commitmsg": "opt --in commit-msg --exec \"validate-commit-msg\"",
"precommit": "opt --in pre-commit --exec \"npm start validate\""
},
"bin": {
"nps": "./dist/bin/nps.js",
"p-s": "./dist/bin/nps.js"
},
"files": [
"dist"
],
"keywords": [],
"author": "Kent C. Dodds <[email protected]> (http://kentcdodds.com/)",
"license": "MIT",
"dependencies": {
"arrify": "1.0.1",
"bluebird": "3.4.6",
"colors": "1.1.2",
"commander": "2.9.0",
"find-up": "1.1.2",
"js-yaml": "3.6.1",
"lodash": "4.14.0",
"manage-path": "2.0.0",
"omelette": "0.3.1",
"prefix-matches": "0.0.9",
"shell-escape": "0.2.0",
"spawn-command-with-kill": "1.0.0"
},
"devDependencies": {
"all-contributors-cli": "3.0.6",
"babel-cli": "6.11.4",
"babel-eslint": "6.1.2",
"babel-jest": "15.0.0",
"babel-plugin-module-resolver": "2.3.0",
"babel-preset-es2015": "6.9.0",
"babel-preset-stage-2": "6.11.0",
"babel-register": "6.11.5",
"cli-tester": "1.0.0",
"codecov": "1.0.1",
"commitizen": "2.8.2",
"condition-node-version": "1.3.0",
"cross-env": "2.0.0",
"cz-conventional-changelog": "1.1.6",
"eslint": "3.4.0",
"eslint-config-kentcdodds": "10.1.0",
"husky": "0.11.7",
"jest-cli": "15.1.1",
"opt-cli": "1.5.1",
"p-s": "*",
"rimraf": "2.5.4",
"semantic-release": "4.3.5",
"sinon": "1.17.4",
"validate-commit-msg": "2.6.1"
},
"eslintConfig": {
"extends": [
"kentcdodds",
"kentcdodds/jest"
]
},
"jest": {
"cacheDirectory": "./node_modules/.cache",
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
},
"release": {
"verifyConditions": {
"path": "condition-node-version",
"node": "^6"
}
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/kentcdodds/p-s.git"
},
"bugs": {
"url": "https://github.com/kentcdodds/p-s/issues"
},
"homepage": "https://github.com/kentcdodds/p-s#readme"
}