-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.08 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
{
"name": "vervalpd-node",
"version": "0.2.0",
"description": "VervalPD Kemendikbud scraper service to consume Non-Documented API data",
"main": "dist/index.js",
"scripts": {
"lint": "xo --fix",
"build": "rimraf dist && tsup"
},
"types": "dist/index.d.ts",
"type": "module",
"keywords": [
"vervalpd",
"vervalpd-node",
"dapodik",
"verval",
"verval scraper",
"vervalpd scraper",
"kemdikbud"
],
"author": {
"name": "Hanif Dwy Putra S",
"email": "hanifdwyputrasembiring@gmail.com",
"url": "https://besecure.eu.org"
},
"license": "MIT",
"devDependencies": {
"@swc/core": "^1.4.11",
"@types/node": "^20.12.4",
"@types/tough-cookie": "^4.0.5",
"rimraf": "^5.0.5",
"tsup": "^8.0.2",
"typescript": "^5.4.3",
"xo": "^0.56.0"
},
"dependencies": {
"got": "^14.2.1",
"node-html-parser": "^6.1.13",
"tough-cookie": "^4.1.3"
},
"repository": {
"url": "https://github.com/smantriplw/vervalpd-node"
},
"files": [
"dist/**/*",
"LICENSE",
"README.md",
"package.json"
]
}