-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.14 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
{
"name": "cp-remote",
"description": "Remote child_process runner with message support",
"version": "1.0.2",
"homepage": "https://github.com/davedoesdev/cp-remote",
"author": {
"name": "David Halls",
"email": "[email protected]",
"url": "http://www.davedoesdev.com"
},
"repository": {
"type": "git",
"url": "https://github.com/davedoesdev/cp-remote.git"
},
"bugs": {
"url": "https://github.com/davedoesdev/cp-remote/issues"
},
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "grunt lint test --remote=localhost",
"coverage": "grunt coverage --remote=localhost"
},
"directories": {
"test": "test",
"lib": "lib"
},
"keywords": [
"child_process",
"ipc",
"message",
"ssh",
"socat",
"python"
],
"devDependencies": {
"async": "^3.2.5",
"c8": "^9.1.0",
"chai": "^5.0.0",
"grunt": "^1.6.1",
"grunt-apidox": "^3.1.1",
"grunt-contrib-jshint": "^3.2.0",
"grunt-exec": "^3.0.0",
"grunt-mocha-test": "^0.13.3",
"mocha": "^10.2.0",
"yargs": "^17.7.2"
},
"overrides": {
"apidox": {
"dox": "^1.0.0"
}
}
}