forked from coursereviews/catalog.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 894 Bytes
/
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
{
"name": "catalog.js",
"version": "1.2.1",
"description": "A JavaScript / TypeScript API for the Middlebury course catalog.",
"main": "./lib/classes/Scraper.js",
"type": "module",
"scripts": {
"test": "node ./__tests__/test.js",
"lib-test": "node ./lib/test.js",
"lint": "eslint **/*.js",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/Nicholas-Sliter/catalog.js.git"
},
"keywords": [
"middlebury",
"catalog",
"course",
"college"
],
"author": "Nicholas Sliter",
"contributors": [
"Nicholas Sliter",
"Dana Silver"
],
"license": "MIT",
"dependencies": {
"dayjs": "^1.10.7",
"node-fetch": "^3.2.0",
"xml2js": "0.4.x"
},
"devDependencies": {
"@types/node": "^17.0.5",
"eslint": "8.5.x",
"tslib": "^2.3.1",
"uvu": "^0.5.3",
"typescript": "^4.5.4"
}
}