-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
47 lines (47 loc) · 979 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
42
43
44
45
46
47
{
"name": "site",
"private": true,
"description": "The HackSI website",
"author": "Dav Glass <[email protected]>",
"version": "0.0.0",
"engines": {
"node": "18.x"
},
"dependencies": {
"body-parser": "^1.20.2",
"express": "^4.18.2",
"express-handlebars": "^7.1.2",
"handlebars": "^4.7.8"
},
"devDependencies": {
"eslint": "^8.49.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"request": "^2.88.2"
},
"nyc": {
"check-coverage": true,
"reporter": [
"lcov",
"text",
"text-summary",
"html"
],
"report-dir": "./artifacts/coverage/",
"statements": 100,
"branches": 100,
"functions": 100,
"lines": 100
},
"scripts": {
"start": "node ./app.js",
"format": "eslint --fix .",
"pretest": "npm run format",
"test": "nyc mocha ./tests/routes.js"
},
"licenses": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/hacksi/site.git"
}
}