forked from givka/bedetheque-scraper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.12 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.12 KB
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
{
"name": "bedetheque-scraper",
"version": "2.9.1",
"description": "NodeJS script to scrap the entire database of dbgest.com / bedetheque.com (approx. 260.000+ albums)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "ts-node test.ts",
"prepublishOnly": "tsc"
},
"keywords": [
"scraper",
"bedetheque",
"comics",
"bdgest",
"scrape",
"givka"
],
"author": "givka",
"email": "givka.dev@gmail.com",
"repository": {
"type": "git",
"url": "https://github.com/givka/bedetheque-scraper.git"
},
"license": "MIT",
"engines": {
"node": ">=10.0"
},
"dependencies": {
"axios-https-proxy-fix": "^0.17.1",
"chalk": "^2.4.2",
"cheerio": "^1.0.0-rc.2",
"fs-extra": "^7.0.0",
"lodash": "^4.17.20",
"moment": "^2.24.0",
"probe-image-size": "^5.0.0"
},
"devDependencies": {
"@types/cheerio": "^0.22.9",
"@types/fs-extra": "^5.0.4",
"@types/lodash": "^4.14.118",
"@types/moment": "^2.13.0",
"ts-node": "~7.0.0",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.1.3"
}
}