This repository has been archived by the owner on Jul 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
66 lines (66 loc) · 1.66 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
{
"name": "mesos-framework-boilerplate",
"version": "0.1.2",
"description": "A boilerplate for developing Mesos frameworks with JavaScript",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/tobilg/mesos-framework-boilerplate.git"
},
"keywords": [
"mesos",
"framework",
"scheduler",
"executor",
"boilerplate",
"mesosphere",
"dc/os",
"dcos",
"dashboard"
],
"author": "[email protected]",
"license": {
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
},
"bugs": {
"url": "https://github.com/tobilg/mesos-framework-boilerplate/issues"
},
"homepage": "https://github.com/tobilg/mesos-framework-boilerplate",
"dependencies": {
"async": "^2.1.4",
"body-parser": "^1.16.1",
"cookie-parser": "^1.4.3",
"cookie-session": "^2.0.0-alpha.2",
"ejs": "^2.5.6",
"express": "^4.14.0",
"lodash": "^4.14.0",
"mesos-framework": "^0.5.3",
"node-zookeeper-client": "^0.2.2",
"passport": "^0.3.2",
"passport-gitlab2": "^2.2.0",
"passport-google-oauth20": "^1.0.0",
"protobufjs": "^5.0.1",
"request": "^2.79.0",
"require-environment-variables": "^1.1.2",
"uuid": "^2.0.2",
"winston": "^2.2.0",
"winston-daily-rotate-file": "^1.1.5"
},
"devDependencies": {
"chai": "^3.5.0",
"jsdoc": "^3.4.0",
"minami": "^1.1.1",
"mocha": "^3.2.0",
"mock-req": "^0.2.0",
"mock-res": "^0.3.3",
"sinon": "^1.17.6",
"istanbul": "0.4.5",
"rewire": "^2.5.2",
"should": "^11.2.0"
}
}