-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
51 lines (51 loc) · 1.6 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
{
"name": "clips-downloader",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"start": "npm run build && npm run go",
"go": "node build/index.js",
"lint": "eslint src/**",
"build": "tsc",
"b": "npm run build",
"build-watch": "tsc -w",
"bw": "npm run build-watch",
"test": "jest build --env=node --coverage --collectCoverageFrom=build/**/*.js",
"t": "npm run test",
"test-watch": "jest build --watch",
"tw": "npm run test-watch",
"ci": "jest build --env=node --ci --coverage --collectCoverageFrom=build/**/*.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"chalk": "^4.1.0",
"cli-progress": "^3.9.0",
"date-fns": "^2.19.0",
"dotenv": "^10.0.0",
"eslint": "^7.22.0",
"fluent-ffmpeg": "^2.1.2",
"ora": "^5.4.1",
"prompts": "^2.4.0",
"tiny-async-pool": "^1.2.0",
"twitch-tools": "0.0.1",
"winston": "^3.3.3",
"youtube-dl-wrap": "latest"
},
"devDependencies": {
"@types/cli-progress": "^3.9.1",
"jest": "^26.6.3",
"@types/fluent-ffmpeg": "^2.1.16",
"@types/jest": "^26.0.21",
"@types/node": "^14.14.35",
"@types/prompts": "^2.0.9",
"@types/tiny-async-pool": "^1.0.0",
"@types/youtube-dl": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"node-notifier": ">=8.0.1",
"typescript": "^4.2.3"
}
}