-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.58 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
{
"name": "khinsider-downloader",
"version": "1.0.1",
"description": "A utility for downloading media from khinsider.",
"main": "bin/index.ts",
"scripts": {
"test": "TEST_MODE=1 jest",
"test:coverage": "npm test -- --coverage",
"start": "ts-node src/app.ts",
"clean": "ts-node scripts/rimraf-multi.ts -p=bin,coverage,dist,temp",
"build": "tsc",
"rebuild": "npm run clean && npm run build",
"sync-version": "ts-node scripts/sync-version.ts",
"postversion": "npm run sync-version",
"prebundle": "npm run rebuild",
"bundle": "pkg dist/app.js --out-path=bin --targets=linux-x64,macos-x64,win-x64",
"postbundle": "ts-node scripts/rename-binaries.ts && ts-node scripts/archive-files"
},
"keywords": [
"khinsider",
"soundtracks",
"downloader",
"music",
"media"
],
"author": "Jacob Heater <jacobheater@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/archiver": "^5.1.1",
"@types/download": "^8.0.1",
"@types/fs-extra": "^9.0.12",
"@types/jest": "^27.0.1",
"@types/jsdom": "^16.2.13",
"@types/node": "^16.9.0",
"@types/rimraf": "^3.0.2",
"@types/uuid": "^8.3.1",
"@types/yargs": "^17.0.2",
"archiver": "^5.3.0",
"fast-glob": "^3.2.7",
"jest": "^27.2.0",
"pkg": "^5.3.2",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.5",
"typescript": "^4.4.2",
"uuid": "^8.3.2"
},
"dependencies": {
"axios": "^0.21.4",
"download": "^8.0.0",
"fs-extra": "^10.0.0",
"jsdom": "^17.0.0",
"ts-node": "^10.2.1",
"winston": "^3.3.3",
"yargs": "^17.1.1"
}
}