-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 861 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 861 Bytes
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
{
"name": "zerochan-scraper-ts",
"version": "2.1.0",
"description": "",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"prepare": "tsc",
"build": "npx tsc"
},
"repository": {
"type": "git",
"url": "git://github.com/4relial/Zerochan-Scraper.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"devDependencies": {
"@types/node": "^18.11.15",
"@types/node-fetch": "^2.6.2",
"prettier": "^2.8.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.9.5"
},
"dependencies": {
"cheerio": "1.0.0-rc.12",
"https": "^1.0.0",
"node-fetch": "^2.6.1"
}
}