-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
54 lines (54 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
54
{
"name": "docker-server",
"author": "Evgeny Kolyakov <[email protected]>",
"description": "DockerServer - Super lightweight & simple RESTFul stateless server for running docker containers on a remote machine(s) in a secure way",
"version": "1.9.0",
"homepage": "https://dockerserver.io",
"repository": "freaker2k7/dockerserver",
"license": "Apache-2.0",
"keywords": [
"docker",
"server",
"micro",
"service",
"rest",
"restful",
"http",
"pm2",
"api"
],
"bin": {
"docker-server": "./bin.js"
},
"scripts": {
"start": "node ./index.js",
"test": "node ./test/basic.js",
"prepublishOnly": "node ./scripts/dockerfile-version-verify.js"
},
"dependencies": {
"aws-sdk": "^2.502.0",
"docker-cli-js": "2.5.3",
"express": "^4.17.1",
"express-rate-limit": "^5.0.0",
"ip": "^1.1.5",
"ping": "^0.2.2",
"redis": "^2.8.0",
"request": "^2.88.0",
"systeminformation": "^5.6.4",
"uuid": "^3.3.2",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^3.10.0",
"yargs": "^13.3.0"
},
"engines": {
"node": ">= 6.0"
},
"files": [
"LICENSE",
"README.md",
"index.js",
"bin.js",
"pm2.config.js",
"lib/"
]
}