forked from CleverCloud/clever-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.47 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
{
"name": "clever-tools",
"version": "0.9.3",
"description": "CLI tool to manage Clever Cloud applications",
"main": "bin/clever.js",
"keywords": [
"cli",
"clever cloud"
],
"engines": {
"node": ">=6 <8"
},
"author": "Rodolphe Belouin <[email protected]>",
"license": "MIT",
"bin": {
"clever": "./bin/clever.js",
"install-clever-completion": "./scripts/install-autocomplete.sh",
"uninstall-clever-completion": "./scripts/uninstall-autocomplete.sh"
},
"dependencies": {
"baconjs": "^0.7.83",
"bluebird": "^3.1.1",
"clever-client": "^0.7.4",
"cliparse": "^0.2.8",
"colors": "^1.1.2",
"common-env": "^5.4.0",
"eslint": "^4.0.0",
"lodash": "^4.13.1",
"mkdirp": "^0.5.1",
"moment": "^2.11.0",
"nodegit": "0.17.0",
"request": "^2.67.0",
"unidecode": "^0.1.8",
"update-notifier": "^1.0.2",
"ws": "^1.0.1",
"xdg": "^0.1.1"
},
"devDependencies": {
"chai": "^3.5.0",
"grunt": "^1.0.1",
"grunt-cli": "^1.2.0",
"grunt-http": "^2.0.1",
"grunt-mocha-test": "^0.13.2",
"mocha": "^3.1.0",
"shelljs": "^0.7.0"
},
"scripts": {
"test": "grunt test"
},
"repository": {
"type": "git",
"url": "https://github.com/CleverCloud/clever-tools.git"
},
"bugs": {
"url": "https://github.com/CleverCloud/clever-tools/issues"
},
"homepage": "https://github.com/CleverCloud/clever-tools",
"pkg": {
"scripts": [
"src/**/*.js"
]
}
}