-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
58 lines (58 loc) · 1.4 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
{
"name": "child-process-promise",
"description": "Simple wrapper around the \"child_process\" module that makes use of promises",
"main": "./index.js",
"files": [
"lib",
"lib-es5",
"Readme.md"
],
"scripts": {
"lint": "eslint lib/*js test/*js",
"test": "npm run mocha",
"mocha": "mocha --ui bdd --reporter spec ./test/",
"prepublish": "babel lib --out-dir lib-es5"
},
"repository": {
"type": "git",
"url": "https://github.com/patrick-steele-idem/child-process-promise.git"
},
"keywords": [
"child",
"process",
"promises"
],
"author": "Patrick Steele-Idem <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/patrick-steele-idem/child-process-promise/issues"
},
"publishConfig": {
"registry": "http://registry.npmjs.org/"
},
"dependencies": {
"cross-spawn": "^4.0.2",
"node-version": "^1.0.0",
"promise-polyfill": "^6.0.1"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-plugin-check-es2015-constants": "^6.8.0",
"babel-plugin-transform-es2015-block-scoping": "^6.10.1",
"babel-preset-es2015": "^6.13.2",
"chai": "^3.5.0",
"eslint": "^0.10.2",
"jshint": "^2.9.1",
"mocha": "^2.4.5"
},
"version": "2.2.0",
"babel": {
"presets": [
"es2015"
],
"plugins": [
"check-es2015-constants",
"transform-es2015-block-scoping"
]
}
}