-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.43 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
{
"name": "bash-exec",
"version": "1.0.3",
"description": "like spawn('bash', [ '-c', cmd ]), but with better error handling",
"main": "src-build/index.js",
"scripts": {
"prepublish": "npm run build",
"build": "babel src --retain-lines --out-dir src-build",
"eslint": "eslint $(find . -not -path '*/*-build/*' -not -path '*/node_modules/*' -type f -name '*.es6')",
"mocha": "mocha test",
"test": "npm run eslint && npm run mocha",
"npmignore": "npm pack . > /dev/null && tar -tvf *.tgz && rm *.tgz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nskazki/bash-exec.git"
},
"keywords": [
"bash",
"exec",
"spawn"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/nskazki/bash-exec/issues"
},
"homepage": "https://github.com/nskazki/bash-exec#readme",
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-eslint": "^4.1.6",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-espower": "^2.1.0",
"babel-preset-es2015": "^6.3.13",
"babel-register": "^6.4.3",
"eslint": "1.10.1",
"eslint-plugin-mocha": "^1.1.0",
"mocha": "^2.3.4",
"node-uuid": "^1.4.7",
"power-assert": "^1.2.0"
},
"dependencies": {
"bluebird": "^3.1.5",
"debug": "^2.2.0",
"lodash": "^4.0.1",
"simple-debugger": "^1.0.3"
},
"directories": {
"example": "examples",
"test": "test"
}
}