forked from lightpohl/gb-dl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.2 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": "gb-dl",
"version": "2.9.1",
"description": "A CLI for downloading Giant Bomb videos.",
"bin": "./bin/bin.js",
"scripts": {
"build": "rimraf ./binaries && npm run pkg",
"lint": "eslint --ext .js .",
"pkg": "npx pkg ./ --targets node12-linux-x64,node12-win-x64,node12-macos-x64 --out-path ./binaries",
"release": "standard-version"
},
"lint-staged": {
"*.{js,json,md}": [
"prettier --write"
]
},
"keywords": [
"giant bomb",
"downloader",
"cli"
],
"engines": {
"node": ">=8.11.4"
},
"repository": {
"type": "git",
"url": "https://github.com/lightpohl/gb-dl.git"
},
"files": [
"bin"
],
"author": "Joshua Pohl",
"license": "MIT",
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-defaults": "^9.0.0",
"eslint-config-prettier": "^6.11.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.0",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"standard-version": "^9.3.0"
},
"dependencies": {
"commander": "^5.1.0",
"dayjs": "^1.8.25",
"filenamify": "^4.1.0",
"got": "^11.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run lint"
}
}
}