forked from lavovaLampa/patreon-scraper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.11 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
{
"name": "patreon-scraper",
"version": "0.1.0",
"description": "Patreon downloader",
"repository": "https://github.com/lavovaLampa/patreon-scraper",
"main": "src/index.ts",
"bin": "build/src/index.js",
"scripts": {
"build": "npm run clean && tsc",
"clean": "rm -rf build exe",
"check": "tsc --noEmit",
"package": "npm run build && pkg --out-path exe .",
"lint": "eslint 'src/**' 'type/**'",
"lint-fix": "eslint --fix 'src/**' 'type/**'"
},
"dependencies": {
"got": "^11.8.2",
"minimist": "^1.2.5",
"moment": "^2.29.1",
"tough-cookie": "^4.0.0"
},
"devDependencies": {
"@tsconfig/node12": "^1.0.7",
"@types/node": "^14.14.32",
"@types/tough-cookie": "^4.0.0",
"@types/minimist": "^1.2.1",
"@typescript-eslint/eslint-plugin": "^4.16.0",
"@typescript-eslint/parser": "^4.16.0",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "^2.2.1",
"typescript": "^4.2.3",
"pkg": "^4.4.9"
},
"author": "LavaLamp",
"license": "MIT",
"prettier": {
"printWidth": 90
}
}