forked from Allar/ue4-mp-downloader
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 966 Bytes
/
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
{
"name": "ue4-mp-downloader",
"version": "2.0.0",
"description": "Downloads owned assets from the UE4 marketplace from a shell.",
"bin": {
"ue4-mp-downloader": "lib/index.js"
},
"scripts": {
"build": "tsc",
"start": "node lib/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Mike Seese",
"contributors": [
"Michael Allar"
],
"license": "MIT",
"dependencies": {
"axios": "^0.19.2",
"axios-cookiejar-support": "^0.5.1",
"cheerio": "^1.0.0-rc.2",
"cli-progress": "^3.6.0",
"console-menu": "^0.1.0",
"dotenv": "^8.2.0",
"jquery": "^3.2.1",
"mem": ">=4.0.0",
"mkdirp": "^0.5.1",
"open": "7.0.2",
"prompt": "^1.0.0",
"rimraf": "^2.6.1",
"tough-cookie": "^3.0.1",
"yargs": "^8.0.2"
},
"devDependencies": {
"@types/cli-progress": "^3.4.2",
"@types/mkdirp": "^1.0.0",
"@types/rimraf": "^2.0.3",
"typescript": "^3.8.3"
}
}