-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
57 lines (57 loc) · 1.34 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
{
"name": "cross-spawn-promise",
"version": "0.10.2",
"description": "Promisified cross-spawn.",
"main": "index.js",
"author": "Zentrick nv (https://www.zentrick.com/)",
"contributors": [
"Tim De Pauw <[email protected]>"
],
"engines": {
"node": ">=4"
},
"license": "MIT",
"files": [
"lib/",
"index.js",
"index.d.ts"
],
"scripts": {
"clean": "gulp clean",
"build": "gulp build",
"prepublish": "in-publish && npm run build || not-in-publish",
"test": "gulp test"
},
"repository": "zentrick/cross-spawn-promise",
"bugs": "https://github.com/zentrick/cross-spawn-promise/issues",
"dependencies": {
"cross-spawn": "^5.1.0"
},
"devDependencies": {
"babel-preset-env": "^1.2.2",
"babel-register": "^6.24.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"del": "^2.2.2",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-coveralls": "^0.1.4",
"gulp-if": "^2.0.2",
"gulp-istanbul": "^1.1.1",
"gulp-load-plugins": "^1.5.0",
"gulp-mocha": "^3.0.1",
"gulp-sourcemaps": "^2.5.0",
"gulp-standard": "^9.0.0",
"in-publish": "^2.0.0",
"isparta": "^4.0.0",
"mocha-junit-reporter": "^1.13.0",
"run-sequence": "^1.2.2",
"standard": "^9.0.2",
"yargs": "^7.0.2"
},
"greenkeeper": {
"ignore": [
"gulp-mocha"
]
}
}