-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
119 lines (119 loc) · 3.13 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
109
110
111
112
113
114
115
116
117
118
119
{
"name": "ezgames-cli",
"description": "EZGames CLI Toolkit",
"version": "0.0.10",
"author": "Saber Nouira @iWirk",
"bin": {
"ezgames": "./bin/run"
},
"bugs": "https://github.com/ezmodyz/ezgames-cli/issues",
"dependencies": {
"@grpc/grpc-js": "^1.3.7",
"@grpc/proto-loader": "^0.6.3",
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/errors": "^1.3.4",
"@oclif/plugin-autocomplete": "^0.3.0",
"@oclif/plugin-help": "^3",
"@oclif/plugin-update": "^1.3.10",
"@octokit/request": "^5.4.14",
"axios": "^0.21.1",
"chalk": "^4.1.0",
"cli-table": "^0.3.6",
"cli-ux": "^5.5.1",
"collect.js": "^4.28.6",
"enquirer": "^2.3.6",
"envfile": "^6.14.0",
"execa": "^5.0.0",
"figures": "^3.2.0",
"fs-extra": "^9.1.0",
"listr2": "^3.4.1",
"minimist": "^1.2.5",
"moment": "^2.29.1",
"node-notifier": "^9.0.1",
"pm2": "^5.1.0",
"retry-axios": "^2.4.0",
"semver": "^7.3.4",
"simple-git": "^2.38.1",
"tslib": "^1",
"validator": "^13.5.2",
"which": "^2.0.2",
"xdg-app-paths": "^7.3.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"@oclif/test": "^1",
"@types/chai": "^4",
"@types/cli-table": "^0.3.0",
"@types/fs-extra": "^9.0.8",
"@types/google-protobuf": "^3.15.5",
"@types/inquirer": "^7.3.1",
"@types/minimist": "^1.2.1",
"@types/mocha": "^5",
"@types/node": "^14.14.31",
"@types/node-notifier": "^8.0.0",
"@types/semver": "^7.3.5",
"@types/validator": "^13.1.3",
"@types/which": "^2.0.0",
"aws-sdk": "^2.927.0",
"chai": "^4",
"eslint": "^7.32",
"eslint-config-oclif": "^4.0.0",
"eslint-config-oclif-typescript": "^1.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"globby": "^10",
"grpc-tools": "^1.11.2",
"grpc_tools_node_protoc_ts": "^5.3.2",
"mocha": "^5",
"nyc": "^14",
"ts-node": "^8",
"ts-proto": "^1.82.5",
"typescript": "^3.3"
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/ezmodyz/ezgames-cli",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "ezgames",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-autocomplete",
"@oclif/plugin-update"
],
"macos": {
"identifier": "eu.ezgames.cli"
},
"update": {
"s3": {
"bucket": "ezg-cli-test",
"host": "https://ewr1.vultrobjects.com/ezg-cli-test",
"xz": true
}
}
},
"repository": "ezmodyz/ezgames-cli",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint . --ext .ts --config .eslintrc.yml",
"prepack": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme",
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif-dev readme && git add README.md",
"build": "oclif-dev pack --xz",
"build-bridge": "sh bridge/build_protos.sh"
},
"types": "lib/index.d.ts"
}