This repository was archived by the owner on Jul 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.63 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.63 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "openode",
"version": "2.1.6",
"description": "opeNode command line interface to control and manage instances.",
"main": "index.js",
"scripts": {
"depcheck": "node node_modules/depcheck/bin/depcheck.js . --ignores=depcheck,eslint-plugin-standard",
"lint": "eslint --ext .js modules",
"lint:fix": "eslint --ext .js modules --fix",
"coverage": "nyc node ./node_modules/mocha/bin/mocha",
"test": "node ./node_modules/mocha/bin/mocha"
},
"bin": {
"openode": "./bin/index.js"
},
"engines": {
"node": ">=10.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openode-io/openode-cli.git"
},
"keywords": [
"openode",
"cloud",
"hosting",
"cli"
],
"author": "Martin Levesque",
"license": "ISC",
"bugs": {
"url": "https://github.com/openode-io/openode-cli/issues"
},
"homepage": "https://github.com/openode-io/openode-cli#readme",
"devDependencies": {
"depcheck": "^1.4.2",
"eslint": "7.32.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "5.1.1",
"eslint-plugin-standard": "5.0.0",
"expect.js": "^0.3.1",
"mocha": "^9.1.3",
"nock": "^13.2.1",
"nyc": "^15.1.0"
},
"dependencies": {
"archiver": "^5.3.0",
"array-unique": "^0.3.2",
"asciify": "^1.3.5",
"commander": "^8.3.0",
"compare-version": "^0.1.2",
"form-data": "^4.0.0",
"inquirer": "^8.2.0",
"is-glob": "^4.0.3",
"lodash": "^4.17.21",
"node-fetch": "^2.6.1",
"ora": "^5.4.0",
"sha1-file": "^2.0.0",
"ws": "^8.2.3"
}
}