forked from chmontgomery/exec-promise
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 696 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 696 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
{
"name": "@chmontgomery/exec-promise",
"version": "1.0.1",
"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",
"email": "chr.montgomery@gmail.com",
"url": "github.com/chmontgomery"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha"
},
"files": [
"index.js"
],
"keywords": [
"exec",
"child_process",
"promise",
"bluebird"
],
"dependencies": {
"bluebird": "^2.9.24"
},
"devDependencies": {
"mocha": "*"
}
}