-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 945 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
41
42
43
{
"name": "yt2pt",
"version": "0.0.0",
"description": "A simple CLI tool built for migrating your channel from youtube to peertube",
"main": "index.js",
"scripts": {
"start": "nodemon index.js",
"test": "jest --coverage",
"test:watch": "jest --watch --coverage",
"lint": "standard -v"
},
"keywords": [
"node",
"backend",
"peertube",
"youtube",
"migration"
],
"author": "buoyantair <[email protected]>",
"license": "MIT",
"dependencies": {
"axios": "^0.21.2",
"chalk": "^2.4.2",
"commander": "^2.20.0",
"dotenv": "^7.0.0",
"form-data": "^2.5.0",
"googleapis": "^41.0.1",
"nodemon": "^1.19.0",
"querystring": "^0.2.0",
"youtube-dl": "^2.0.0"
},
"devDependencies": {
"@types/jest": "^24.0.15",
"@types/youtube-dl": "^1.12.2",
"jest": "^24.7.1",
"standard": "^12.0.1"
},
"standard": {
"env": [
"jest"
]
}
}