-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.03 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.03 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
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
{
"name": "@hyperone/cli",
"version": "1.10.0",
"description": "HyperOne Command Line Interface",
"repository": {
"type": "git",
"url": "https://github.com/hyperonecom/h1-cli.git"
},
"license": "MIT",
"author": "",
"main": "bin/start",
"bin": {
"h1": "./bin/h1",
"rbx": "./bin/rbx"
},
"scripts": {
"start": "./bin/h1.js",
"build": "./scripts/build.sh",
"lint": "eslint .",
"docs": "node scripts/print_docs/index.js docs/",
"docs_coverage": "node scripts/print_docs_coverage.js",
"test": "npx ava --verbose"
},
"dependencies": {
"@hyperone/vhdx": "^1.0.1",
"boxen": "^4.2.0",
"chalk": "^2.4.2",
"cookie": "^0.4.0",
"dns-zonefile": "^0.2.6",
"inquirer": "^7.1.0",
"jmespath": "^0.15.0",
"js-yaml": "^3.13.1",
"marked": "^0.7.0",
"marked-terminal": "^3.3.0",
"ms": "^2.1.2",
"node-rsa": "^0.4.2",
"omelette": "^0.4.12",
"opn": "^6.0.0",
"progress": "^2.0.3",
"qrcode": "^1.4.4",
"qs": "^6.9.1",
"readline-transform": "^1.0.0",
"sha512crypt-node": "^0.1.0",
"shell-quote": "^1.7.2",
"speakeasy": "^2.0.0",
"ssh2": "^0.8.9",
"structured-cli": "^1.0.5",
"superagent": "^5.2.2",
"tabula": "^1.10.0",
"update-notifier": "^3.0.1",
"ws": "^7.2.3",
"ws-streamify": "^0.1.4"
},
"pkg": {
"scripts": [
"lib/**/*.js",
"bin/**/*.js",
"!bin/**/tests.js",
"!lib/**/tests.js"
],
"assets": [
"bin/**/*.md",
"bin/**/*.ps",
"bin/replica/create/HyperOneCa.cer"
]
},
"keywords": [],
"devDependencies": {
"@hyperone/eslint-config": "^1.0.5",
"ajv": "^6.12.0",
"ava": "^2.4.0",
"babel-eslint": "^10.1.0",
"dns-socket": "^4.2.0",
"eslint": "^6.8.0",
"fast-glob": "^3.2.2",
"imap": "^0.8.19",
"mysql2": "^2.1.0",
"node-forge": "^0.10.0",
"nodemailer": "^6.4.5",
"pg": "^7.18.2",
"pkg": "^4.4.4"
},
"ava": {
"files": [
"bin/**/tests.js",
"lib/**/tests.js",
"!lib/tests.js"
]
}
}