-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
108 lines (108 loc) · 2.74 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
102
103
104
105
106
107
108
{
"name": "clever-tools",
"version": "3.9.0",
"description": "Command Line Interface for Clever Cloud.",
"main": "bin/clever.js",
"type": "module",
"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": "9.1.0",
"cliparse": "0.5.0",
"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",
"tldts": "6.1.30",
"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",
"@rollup/plugin-commonjs": "26.0.1",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "15.2.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",
"magic-string": "0.30.11",
"mime-types": "2.1.35",
"mocha": "8.4.0",
"pkg": "5.8.1",
"rollup": "4.14.1",
"semver": "7.3.5"
},
"overrides": {
"pkg-fetch": "3.5.2"
},
"scripts": {
"build": "rollup -c rollup.config.js",
"pretest": "npm run lint",
"test": "grunt test",
"lint": "eslint bin src scripts",
"lint:fix": "eslint --fix bin src scripts",
"install-local:cliparse": "(cd ../cliparse-node && npm pack) && mv ../cliparse-node/cliparse-*.tgz . && npm i -f ./cliparse-*.tgz"
},
"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"
}
}