-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 886 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
{
"name": "directory.js",
"version": "3.2.2",
"description": "JS API for the Middlebury student directory at https://directory.middlebury.edu/default.aspx",
"main": "./lib/scraper.js",
"scripts": {
"test": "node ./__tests__/test.js",
"build": "npx -p typescript tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nicholas-Sliter/directory.js.git"
},
"keywords": [
"Middlebury"
],
"author": "Nicholas Sliter",
"license": "MIT",
"bugs": {
"url": "https://github.com/Nicholas-Sliter/directory.js/issues"
},
"homepage": "https://github.com/Nicholas-Sliter/directory.js#readme",
"dependencies": {
"node-fetch": "^3.3.2",
"node-html-parser": "^6.1.10"
},
"devDependencies": {
"@types/node": "^20.8.0",
"uvu": "^0.5.3"
},
"type": "module",
"exports": {
"default": "./lib/scraper.js"
}
}