-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
49 lines (49 loc) · 1.33 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
{
"name": "powershell-command-executor",
"version": "1.1.4",
"description": "Provides a registry and gateway for execution powershell commands through long-lived established remote PSSessions via a stateful-process-command-proxy pool of powershell processes",
"main": "psCommandService.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha test/all.js",
"test-docker": "mocha test/unit.js"
},
"keywords": [
"command",
"process",
"os",
"dos",
"commandline",
"command line",
"shell",
"windows",
"powershell",
"execute",
"exec"
],
"dependencies": {
"mustache": "^4.1.0",
"promise": "latest",
"stateful-process-command-proxy": "latest"
},
"devDependencies": {
"mocha": "latest"
},
"contributors": [
{
"name": "bitsofinfo",
"url": "http://bitsofinfo.wordpress.com"
}
],
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/bitsofinfo/powershell-command-executor.git"
},
"bugs": {
"url": "https://github.com/bitsofinfo/powershell-command-executor/issues"
},
"homepage": "https://github.com/bitsofinfo/powershell-command-executor"
}