This repository has been archived by the owner on Aug 14, 2022. It is now read-only.
forked from tobilg/mesos-framework-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.84 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
{
"name": "mesos-framework-core",
"version": "1.0.0",
"description": "A wrapper around the Mesos HTTP APIs for Schedulers and Executors.",
"keywords": [
"mesos",
"framework",
"http",
"api",
"wrapper",
"base",
"scheduler",
"executor"
],
"main": "index.js",
"scripts": {
"generate-docs": "node_modules/.bin/jsdoc --configure .jsdoc.json --verbose",
"publish-please": "node ./node_modules/publish-please/bin/publish-please.js",
"start": "node init.js",
"prepublish": "node ./node_modules/publish-please/bin/publish-please.js guard"
},
"author": "TobiLG",
"contributors": "Jacob Koren, Didi Kohen, hanymahajna",
"license": "Apache-2.0",
"dependencies": {
"async": "^2.5.0",
"aws-sdk": "^2.133.0",
"body-parser": "^1.18.2",
"cookie-parser": "^1.4.3",
"cookie-session": "^2.0.0-beta.2",
"ejs": "^2.5.7",
"express": "^4.16.1",
"express-http-proxy": "^0.11.0",
"flat": "4.0.0",
"lodash": "^4.17.4",
"mesos-dns-node-resolver": "^1.0.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.2",
"replaceall": "^0.1.6",
"request": "^2.83.0",
"require-environment-variables": "^1.1.2",
"uuid": "^2.0.3",
"winston": "^2.4.0",
"winston-daily-rotate-file": "^1.7.2"
},
"devDependencies": {
"chai": "^4.1.1",
"chai-as-promised": "^7.1.1",
"istanbul": "0.4.5",
"jsdoc": "^3.4.0",
"minami": "^1.1.1",
"mocha": "^3.2.0",
"mock-req": "^0.2.0",
"mock-res": "^0.3.3",
"nock": "^9.2.3",
"publish-please": "^2.3.1",
"rewire": "^2.5.2",
"should": "^11.2.0",
"sinon": "2.2.0",
"supertest": "^3.0.0"
},
"repository": "https://github.com/Zooz/mesos-framework-core"
}