-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
45 lines (45 loc) · 1 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
{
"name": "medal-downloader",
"version": "1.3.1",
"description": "Download all user medal videos",
"main": "srcs/index.js",
"repository": {
"type": "git",
"url": "https://github.com/noeRls/medal-downloader.git"
},
"keywords": [
"medal",
"download",
"backup",
"record",
"cli",
"medaltv",
"clip",
"videos"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node srcs/index.js",
"lint": "eslint srcs/ --ext .js",
"lint:fix": "eslint srcs/ --fix --ext .js"
},
"author": "Noe Rivals",
"license": "MIT",
"dependencies": {
"axios": "^0.19.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"joi": "^14.3.1",
"progress": "^2.0.3",
"sanitize-filename": "^1.6.3",
"yargs": "^15.3.0"
},
"devDependencies": {
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0"
},
"bin": {
"medal-downloader": "./srcs/index.js"
}
}