-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
71 lines (71 loc) · 1.45 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
{
"name": "executive",
"version": "1.6.3",
"description": "Elegant command execution with built-in control flow",
"main": "lib/executive.cjs.js",
"module": "lib/executive.es6.js",
"jsnext:main": "lib/executive.es6.js",
"types": "executive.d.ts",
"files": [
"executive.d.ts",
"lib/",
"src/"
],
"scripts": {
"build": "sake build",
"prepublishOnly": "sake build",
"pretest": "sake build",
"test": "sake test"
},
"homepage": "https://github.com/zeekay/executive",
"bugs": {
"url": "https://github.com/zeekay/executive/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/zeekay/executive"
},
"keywords": [
"async",
"bash",
"child_process",
"commands",
"exec",
"execSync",
"executable",
"promise",
"run",
"sh",
"shell",
"spawn"
],
"author": "Zach Kelling <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"devDependencies": {
"coffeescript": "^2.3.1",
"es-is": "^3.3.10",
"sake-bundle": "^0.6.14",
"sake-cli": "^0.7.2",
"sake-outdated": "^0.4.1",
"sake-publish": "^0.1.17",
"sake-test": "^0.2.1",
"sake-version": "^0.1.19",
"shell-quote": "^1.6.1",
"vigil": "^0.7.3"
},
"greenkeeper": {
"ignore": [
"coffeescript",
"sake-bundle",
"sake-cli",
"sake-outdated",
"sake-publish",
"sake-test",
"sake-version",
"vigil"
]
}
}