forked from CleverCloud/clever-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "clever-tools",
"version": "1.4.0",
"description": "Command Line Interface for Clever Cloud.",
"main": "bin/clever.js",
"keywords": [
"clever-tools",
"cli",
"clever cloud"
],
"engines": {
"node": "10"
},
"author": "Clever Cloud <[email protected]>",
"license": "MIT",
"bin": {
"clever": "./bin/clever.js",
"install-clever-completion": "./scripts/install-autocomplete.sh",
"uninstall-clever-completion": "./scripts/uninstall-autocomplete.sh"
},
"files": [
"bin",
"src",
"scripts/*.sh"
],
"dependencies": {
"baconjs": "^0.7.83",
"clever-client": "^0.11.2",
"cliparse": "^0.3.1",
"colors": "^1.3.3",
"common-env": "^6.3.0",
"isomorphic-git": "0.37.0",
"lodash": "^4.17.11",
"mkdirp": "^0.5.1",
"moment": "^2.23.0",
"opn": "^5.4.0",
"request": "^2.88.0",
"slugify": "^1.3.4",
"string-length": "^2.0.0",
"text-table": "^0.2.0",
"update-notifier": "^2.5.0",
"ws": "^6.1.2",
"xdg": "^0.1.1"
},
"devDependencies": {
"aws-sdk": "^2.386.0",
"chai": "^4.2.0",
"del": "^3.0.0",
"eslint": "^5.12.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"fs-extra": "^7.0.1",
"glob": "^7.1.3",
"grunt": "^1.0.3",
"grunt-cli": "^1.3.2",
"grunt-http": "^2.3.1",
"grunt-mocha-test": "^0.13.3",
"mocha": "^5.2.0",
"pkg": "^4.3.7",
"semver": "^5.6.0"
},
"scripts": {
"pretest": "npm run lint",
"test": "grunt test",
"lint": "eslint src scripts",
"lint:fix": "eslint --fix src scripts"
},
"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"
]
}
}