-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.13 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.13 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
{
"name": "mops-cli",
"version": "0.0.1",
"description": "A command-line interface for performing MongoDB Cloud Manager | Ops Manager tasks through their Public API",
"bin": {
"mops": "bin/mops"
},
"scripts": {
"lint": "eslint bin lib test",
"test": "mocha --harmony --reporter spec test/**/*.spec.js"
},
"repository": {
"type": "git",
"url": "https://github.com/leafygreen/mops-cli.git"
},
"keywords": [
"mops",
"MongoDB",
"MongoDB Cloud Manager",
"MongoDB Ops Manager",
"cli"
],
"author": "MongoDB",
"contributors": [
"Kuczynski, Dennis <dennis.kuczynski@gmail.com>",
"Pakulski, Emily <emily.pakulski@gmail.com>",
"Peter Gravelle <peter@mongodb.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/leafygreen/mops-cli/issues"
},
"homepage": "https://github.com/leafygreen/mops-cli",
"dependencies": {
"commander": "^2.8.1",
"nconf": "^0.7.1",
"node-mms-client": "^0.0.3",
"prompt": "^0.2.14",
"q": "^1.4.1",
"tmp": "0.0.26"
},
"devDependencies": {
"chai": "^3.2.0",
"eslint": "^0.24.1",
"mocha": "^2.2.5"
}
}