-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 888 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 888 Bytes
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
{
"name": "docker-exec-websocket-server",
"version": "3.0.0",
"scripts": {
"test": "mocha ./test/test.js"
},
"license": "MPL-2.0",
"files": [
"src",
"main.js",
"browser.js"
],
"main": "main.js",
"dependencies": {
"debug": "^4.1.1",
"dockerode": "^3.2.1",
"lodash": "^4.17.21",
"through2": "^4.0.2",
"ws": "^8.4.2"
},
"devDependencies": {
"assume": "^2.2.0",
"docker-exec-websocket-client": "^1.4.0",
"eslint": "^8.8.0",
"express": "^4.17.3",
"mocha": "^9.2.0",
"term.js": "^0.0.7"
},
"engines": {
"node": ">12.0"
},
"repository": {
"type": "git",
"url": "https://github.com/taskcluster/docker-exec-websocket-server.git"
},
"bugs": "https://github.com/taskcluster/docker-exec-websocket-server/issues",
"mocha": {
"ui": "tdd",
"timeout": "40s",
"reporter": "spec"
}
}