-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 756 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 756 Bytes
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
{
"name": "@chmontgomery/exec-promise",
"version": "1.1.0",
"description": "Executes a command line string using child_process.exec under the covers, wrapped in a bluebird promise for convenience.",
"license": "MIT",
"repository": "chmontgomery/exec-promise",
"author": {
"name": "Chris Montgomery",
"url": "github.com/chmontgomery"
},
"contributors": [
{
"name": "Adan Perez",
"url": "github.com/adanperez"
}
],
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha"
},
"files": [
"index.js"
],
"keywords": [
"exec",
"child_process",
"promise",
"bluebird"
],
"dependencies": {
"bluebird": "^2.9.24"
},
"devDependencies": {
"mocha": "*"
}
}