-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
57 lines (57 loc) · 1.37 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": "gulp-run-command",
"version": "0.0.10",
"description": "A simple way to run command-line programs from gulp in a cross-platform way.",
"main": "index.es5.js",
"types": "index.d.ts",
"scripts": {
"pub": "np patch",
"postversion": "npm run build",
"clean": "rimraf index.es5.js",
"build": "babel index.js > index.es5.js"
},
"standard": {
"parser": "babel-eslint",
"globals": [
"describe",
"it",
"before",
"after",
"beforeEach",
"afterEach"
]
},
"babel": {
"plugins": [
"transform-runtime"
],
"presets": [
"es2015-node4",
"stage-2"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Klathmon/gulp-run-command.git"
},
"author": "Gregory Benner <[email protected]> (https://github.com/Klathmon)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Klathmon/gulp-run-command/issues"
},
"homepage": "https://github.com/Klathmon/gulp-run-command#readme",
"devDependencies": {
"babel-cli": "6.14.0",
"babel-core": "6.14.0",
"babel-preset-es2015-node4": "2.1.0",
"babel-preset-stage-2": "6.13.0",
"np": "2.9.0",
"standard": "8.1.0"
},
"dependencies": {
"babel-plugin-transform-runtime": "6.15.0",
"cross-spawn": "4.0.0",
"spawn-args": "0.2.0",
"timeout-as-promise": "^1.0.0"
}
}