forked from CleverCloud/clever-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.44 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "clever-tools",
"version": "3.4.0",
"description": "Command Line Interface for Clever Cloud.",
"main": "bin/clever.js",
"keywords": [
"clever-tools",
"cli",
"clever cloud"
],
"engines": {
"node": ">=18"
},
"pkg-node-version": "18",
"author": "Clever Cloud <[email protected]>",
"license": "Apache-2.0",
"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": {
"@clevercloud/client": "^8.1.2",
"clf-date": "^0.2.0",
"cliparse": "^0.3.3",
"colors": "1.4.0",
"common-env": "^6.4.0",
"curlconverter": "^3.21.0",
"duration-js": "^4.0.0",
"eventsource": "^1.1.0",
"iso8601-duration": "^2.1.2",
"isomorphic-git": "^1.25.3",
"linux-release-info": "^3.0.0",
"lodash": "^4.17.21",
"mkdirp": "^1.0.4",
"moment": "^2.29.1",
"open": "^8.4.0",
"slugify": "^1.5.3",
"string-length": "^4.0.2",
"superagent": "^6.1.0",
"text-table": "^0.2.0",
"update-notifier": "^5.1.0",
"uuid": "^8.3.2",
"ws": "^7.4.6",
"xdg": "^0.1.1"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"aws-sdk": "^2.919.0",
"chai": "^4.3.4",
"del": "^6.0.0",
"eslint": "^7.27.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"fs-extra": "^10.0.0",
"glob": "^7.1.7",
"grunt": "^1.4.1",
"grunt-cli": "^1.4.3",
"grunt-http": "^2.3.3",
"grunt-mocha-test": "^0.13.3",
"mime-types": "^2.1.35",
"mocha": "^8.4.0",
"pkg": "^5.8.1",
"semver": "^7.3.5",
"text-table": "^0.2.0"
},
"overrides": {
"pkg-fetch": "3.5.2"
},
"scripts": {
"pretest": "npm run lint",
"test": "grunt test",
"lint": "eslint bin src scripts",
"lint:fix": "eslint --fix bin 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"
]
},
"volta": {
"node": "18.15.0"
}
}