forked from rannn505/child-shell
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.13 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "node-powershellcore",
"version": "1.0.0",
"description": "Easily run PowerShell from your NodeJS app - cross platform edition!",
"main": "./dist/index.js",
"files": [
"dist",
"example",
"test"
],
"directories": {
"example": "example"
},
"scripts": {
"build": "gulp",
"dev": "gulp watch",
"start": "cd ./example && node example.js",
"test": "istanbul cover ./node_modules/mocha/bin/_mocha",
"test:coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"patch": "npm version patch -m \"Release version %s\"",
"version": "npm run build && git add -A",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BenjaminMichael/node-powershell.git"
},
"keywords": [
"node-powershell",
"ps",
"powershell",
"node-ps",
"microsoft",
"shell",
"cmd",
"commandline",
"command",
"Line",
"windows",
"windows powershell",
"script",
"spwan",
"shells",
"terminal",
"linux powershell",
"powershell github",
"PowerShell for every system",
"PowerShell cross-platform",
"powershell linux",
"powershell centos",
"powershell rhel",
"powershell ubuntu",
"powershell macos",
"powershell docker"
],
"author": "github.com/BenjaminMichael",
"license": "MIT",
"bugs": {
"url": "https://github.com/rannn505/node-powershell/issues"
},
"homepage": "https://github.com/BenjaminMichael/node-powershell.git",
"dependencies": {
"bluebird": "^3.5.1",
"chalk": "^2.1.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.0",
"del": "^3.0.0",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.0",
"gulp-clean": "^0.3.2",
"gulp-header": "^1.8.9",
"istanbul": "^0.4.5",
"mocha": "^4.0.1",
"mocha-lcov-reporter": "^1.3.0"
}
}