This repository has been archived by the owner on Jun 27, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
108 lines (108 loc) · 2.7 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": "ego-cli",
"displayName": "e.GO CLI",
"version": "0.88.1",
"description": "Command Line Interface, which is designed to handle things, like Dev(Ops) tasks, much faster.",
"main": "dist/index.js",
"private": false,
"scripts": {
"build": "del ./dist && tsc && make-dir ./dist/res && cpy --parents ./src/res ./dist/res",
"doc": "del ./doc && (typedoc --out ./doc ./src)",
"deploy": "npm install && npm audit fix && npm run build && npm publish"
},
"bin": {
"ego": "./bin/ego"
},
"files": [
"bin",
"dist"
],
"keywords": [
"cli",
"command",
"file",
"docker",
"generator",
"git",
"http",
"server",
"share",
"line",
"interface",
"task",
"yeoman",
"yo"
],
"repository": {
"type": "git",
"url": "git+https://github.com/egodigital/ego-cli.git"
},
"author": "e.GO Digital GmbH, Aachen, Germany",
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/egodigital/ego-cli/issues"
},
"homepage": "https://github.com/egodigital/ego-cli#readme",
"dependencies": {
"@egodigital/types": "^1.2.0",
"@slack/web-api": "^5.14.0",
"chalk": "^3.0.0",
"chokidar": "^3.4.3",
"cli-highlight": "^2.1.8",
"cli-progress": "^3.8.2",
"cron": "^1.8.2",
"csv-parser": "^2.3.3",
"deepmerge": "^4.2.2",
"ejs": "^3.1.5",
"express": "^4.17.1",
"filesize": "^6.1.0",
"fs-extra": "^8.1.0",
"global-dirs": "^2.0.1",
"got": "^10.7.0",
"html-entities": "^1.3.1",
"inquirer": "^7.3.3",
"is-root": "^2.1.0",
"isbinaryfile": "^4.0.6",
"js-levenshtein": "^1.1.6",
"lodash": "^4.17.20",
"mime-types": "^2.1.27",
"minimist": "^1.2.5",
"moment": "^2.29.1",
"moment-timezone": "^0.5.32",
"node-enumerable": "^5.0.1",
"open": "^7.3.0",
"ora": "^4.1.1",
"p-queue": "^6.6.2",
"progress-stream": "^2.0.0",
"public-ip": "^4.0.2",
"qrcode": "^1.4.4",
"sanitize-filename": "^1.6.3",
"signale": "^1.4.0"
},
"devDependencies": {
"@types/cli-progress": "^3.8.0",
"@types/cron": "^1.7.2",
"@types/ejs": "^3.0.5",
"@types/express": "4.17.1",
"@types/fs-extra": "^8.1.1",
"@types/html-entities": "^1.2.16",
"@types/inquirer": "^6.5.0",
"@types/js-levenshtein": "^1.1.0",
"@types/lodash": "^4.14.165",
"@types/mime-types": "^2.1.0",
"@types/minimist": "^1.2.1",
"@types/node": "^12.12.6",
"@types/progress-stream": "^2.0.1",
"@types/signale": "^1.4.1",
"cpy-cli": "^3.1.1",
"del-cli": "^3.0.1",
"make-dir-cli": "^2.0.0",
"tslint": "^6.1.3",
"typedoc": "^0.19.2",
"typescript": "^4.1.2"
},
"engines": {
"node": ">=12.0.0",
"npm": ">=6.9.0"
}
}