forked from rannn505/child-shell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.04 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
{
"name": "node-powershell",
"version": "3.1.1",
"description": "Easily run PowerShell from your NodeJS app",
"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",
"version": "npm run build && git add -A",
"postversion": "git push && git push --tags",
"patch": "npm version minor -m \"Release version %s\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/rannn505/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": "Ran Cohen <rannn505@outlook.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rannn505/node-powershell/issues"
},
"homepage": "http://rannn505.github.io/node-powershell/",
"dependencies": {
"bluebird": "^3.4.7",
"chalk": "^1.1.3"
},
"devDependencies": {
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.22.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"coveralls": "^2.11.16",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-clean": "^0.3.2",
"gulp-header": "^1.8.8",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"mocha-lcov-reporter": "^1.3.0"
}
}