forked from dcos-labs/marathon-validate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 955 Bytes
/
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
{
"name": "marathon-validate",
"version": "0.1.2",
"description": "A tiny command line tool to validate application or group configuration files for Marathon",
"main": "bin/marathon-validate.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"mesos",
"marathon",
"schema",
"validator",
"json",
"application",
"app",
"group"
],
"author": {
"name": "TobiLG",
"email": "[email protected]",
"url": "https://github.com/tobilg"
},
"bin": {
"marathon-validate": "bin/marathon-validate.js"
},
"repository": {
"type": "git",
"url": "https://github.com/dcos-labs/marathon-validate.git"
},
"bugs": {
"url": "https://github.com/dcos-labs/marathon-validate/issues"
},
"license": "MIT",
"dependencies": {
"ajv": "^4.1.3",
"commander": "^2.9.0",
"fs2obj": "^0.3.0",
"mkdirp": "^0.5.1",
"request": "^2.72.0"
}
}