-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
84 lines (84 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
81
82
83
84
{
"name": "orcinus",
"version": "0.5.2",
"description": "Container orchestration tools",
"main": "cli.js",
"scripts": {
"test": "node test/pre-post.js pre && sleep 5 && ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha test/test.js && node test/pre-post.js post",
"dashboard-test": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha test/dashboard.js"
},
"bin": {
"orcinus": "./cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anak10thn/orcinus.git"
},
"keywords": [
"docker",
"swarm",
"compose",
"tools",
"utility"
],
"author": "Ibnu Yahya <anak10thn@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/anak10thn/orcinus/issues"
},
"homepage": "https://github.com/anak10thn/orcinus#readme",
"dependencies": {
"async": "^2.4.1",
"base-64": "^0.1.0",
"bcrypt": ">=5.0.0",
"body-parser": "~1.15.1",
"bytes": "^2.5.0",
"colors": "^1.1.2",
"commander": "^2.9.0",
"compression": "^1.6.2",
"cookie-parser": "~1.4.3",
"cors": "^2.8.3",
"debug": "~2.2.0",
"docker-parse-image": "^3.0.1",
"express": "^4.15.2",
"file-extension": "^3.1.2",
"http-proxy": "^1.16.2",
"jsonwebtoken": "^7.4.1",
"jwt-decode": "^2.2.0",
"md5": "^2.2.1",
"mongoose": "^5.9.5",
"morgan": "~1.7.0",
"orcinusd": "^0.4.0",
"passport": "^0.3.2",
"passport-github": "^1.1.0",
"passport-google-oauth": "^1.0.0",
"passport-local": "^1.0.0",
"path": "^0.12.7",
"serve-favicon": "~2.3.0",
"urandom": "0.0.2",
"utf8": "^2.1.2",
"yamljs": "^0.2.8"
},
"nexe": {
"input": "cli.js",
"output": "orcinus",
"temp": "build/",
"debug": false,
"nodeMakeArgs": [
"-j",
"8"
],
"runtime": {
"framework": "node",
"version": "7.7.2",
"ignoreFlags": true
}
},
"devDependencies": {
"faker": "^4.1.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"should": "^11.2.1",
"supertest": "^3.0.0"
}
}