-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.38 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
{
"name": "just-run-it",
"version": "0.3.0",
"description": "A simple and straightforward javascript library for running system commands",
"main": "index.js",
"scripts": {},
"files": [
"index.js",
"index.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mearns/just-run-it.git"
},
"keywords": [
"spawn",
"shell",
"command",
"exec",
"child_process",
"process"
],
"author": "Brian Mearns",
"license": "MIT",
"bugs": {
"url": "https://github.com/mearns/just-run-it/issues"
},
"homepage": "https://github.com/mearns/just-run-it#readme",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^9.0.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^2.3.0",
"prettier": "^1.17.1",
"pretty-quick": "^1.10.0"
},
"optionalDependencies": {
"ansi-colors": "^3.2.4",
"chalk": "^2.4.2",
"colorette": "^1.0.7",
"kleur": "^3.0.3"
}
}