forked from JacobLinCool/NTNU-Course
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.74 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
51
52
53
54
55
56
{
"name": "ntnu-course",
"version": "0.1.5",
"description": "Query Course Information of National Taiwan Normal University.",
"main": "lib/index.js",
"scripts": {
"test": "jest --coverage",
"prepare": "npm run build && npm run docs",
"dev": "tsup --watch",
"build": "node scripts/build && npm run format && tsup",
"docs": "typedoc ./src/",
"format": "prettier --write '**/*.{js,ts,jsx,tsx,json,yml,yaml,md,html}' '!lib' '!docs' '!coverage'",
"lint": "eslint ."
},
"keywords": [
"NTNU",
"National Taiwan Normal University"
],
"author": "JacobLinCool <[email protected]> (https://github.com/JacobLinCool)",
"license": "MIT",
"types": "lib/index.d.ts",
"files": [
"lib",
"schema"
],
"devDependencies": {
"@types/jest": "27.4.0",
"@types/node": "17.0.10",
"@types/node-fetch": "2.5.12",
"@types/turndown": "5.0.1",
"@typescript-eslint/eslint-plugin": "5.10.0",
"@typescript-eslint/parser": "5.10.0",
"eslint": "8.7.0",
"eslint-config-prettier": "8.3.0",
"jest": "27.4.7",
"prettier": "2.5.1",
"ts-jest": "27.1.3",
"ts-json-schema-generator": "0.97.0",
"tsup": "5.11.11",
"typedoc": "0.23.7",
"typescript": "4.7.4"
},
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"node-fetch": "2.6.7",
"turndown": "^7.1.1"
},
"homepage": "https://jacoblincool.github.io/NTNU-Course/",
"repository": {
"type": "git",
"url": "git+https://github.com/JacobLinCool/NTNU-Course.git"
},
"bugs": {
"url": "https://github.com/JacobLinCool/NTNU-Course/issues"
}
}