-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 858 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 858 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
34
35
36
37
38
{
"name": "vulcan-scraper",
"version": "1.5.0",
"description": "Small library to scrape Vulcan e-register",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build"
},
"files": ["/dist"],
"repository": {
"type": "git",
"url": "git+https://github.com/kabuspl/vulcan-scraper.git"
},
"keywords": [
"uonet",
"uonetplus",
"vulcan",
"scraper"
],
"author": "kabus",
"license": "MIT",
"bugs": {
"url": "https://github.com/kabuspl/vulcan-scraper/issues"
},
"homepage": "https://github.com/kabuspl/vulcan-scraper#readme",
"dependencies": {
"fetch-cookie": "^2.1.0",
"node-html-parser": "^6.1.10",
"url": "^0.11.3"
},
"type": "module",
"devDependencies": {
"@types/node": "^20.9.2",
"typescript": "^5.2.2"
}
}