-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 804 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 804 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
{
"name": "building_scraper",
"version": "1.0.0",
"description": "Caches info from OSU building API in a quickly-accessible and flexible manner",
"main": "building_scraper.js",
"scripts": {
"lint": "standard",
"start": "node building_scraper.js",
"test": "standard && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/classmere/building_scraper.git"
},
"author": "Rutger Farry",
"license": "MIT",
"bugs": {
"url": "https://github.com/classmere/building_scraper/issues"
},
"homepage": "https://github.com/classmere/building_scraper#readme",
"dependencies": {
"mongodb": "^3.0.1",
"request": "^2.83.0",
"request-promise-native": "^1.0.5"
},
"devDependencies": {
"jest": "^22.1.4",
"standard": "^10.0.3"
}
}