This repository was archived by the owner on Jul 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.38 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.38 KB
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
{
"name": "mesos-framework",
"version": "0.7.0",
"description": "A wrapper around the Mesos HTTP APIs for Schedulers and Executors. Write your Mesos framework in pure JavaScript!",
"keywords": [
"mesos",
"framework",
"http",
"api",
"wrapper",
"base",
"scheduler",
"executor"
],
"main": "index.js",
"scripts": {
"docs": "jsdoc --configure .jsdoc.json --verbose",
"publish-please": "publish-please",
"prepublishOnly": "publish-please guard",
"test": "nyc mocha"
},
"author": "TobiLG",
"license": "Apache-2.0",
"nyc": {
"reporter": [
"html"
],
"report-dir": "./docs/coverage"
},
"dependencies": {
"lodash": "^4.17.5",
"node-zookeeper-client": "^0.2.2",
"protobufjs": "^5.0.2",
"requirefrom": "^0.2.1",
"uuid": "^3.2.1",
"winston": "^2.4.0",
"winston-daily-rotate-file": "^1.7.2"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"chalk": "~1.1.3",
"jsdoc": "^3.5.5",
"minami": "^1.2.3",
"mocha": "^3.4.2",
"mock-req": "^0.2.0",
"mock-res": "^0.3.3",
"nyc": "^11.4.1",
"publish-please": "~2.3.1",
"run-sequence": "~1.2.2",
"sinon": "^1.17.7"
},
"repository": {
"type": "git",
"url": "https://github.com/tobilg/mesos-framework.git"
},
"bugs": {
"url": "https://github.com/tobilg/mesos-framework/issues"
}
}