-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
35 lines (35 loc) · 1.08 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
{
"name": "participate.whatwg.org",
"private": true,
"description": "The website for https://participate.whatwg.org, including the Contributor and Workstream Participant Agreement",
"repository": "whatwg/participate.whatwg.org",
"author": "Domenic Denicola <[email protected]> (https://domenic.me/)",
"license": "Apache-2.0",
"scripts": {
"start": "node lib/app.js",
"lint": "eslint",
"prepare": "npm run update-sg",
"test": "jest",
"update-sg": "git clone \"https://github.com/whatwg/sg.git\" \"sg\" || git -C \"sg\" pull",
"coverage": "jest --coverage"
},
"dependencies": {
"@koa/router": "^13.1.0",
"@octokit/rest": "^20.1.1",
"escape-goat": "^3.0.0",
"github-username-regex": "^1.0.0",
"handlebars": "^4.7.8",
"http-errors": "^2.0.0",
"http-graceful-shutdown": "^3.1.13",
"koa": "^2.15.3",
"koa-bodyparser": "^4.4.1",
"koa-handlebars": "^2.0.0",
"twitter-api-v2": "^1.18.1"
},
"devDependencies": {
"@domenic/eslint-config": "^4.0.1",
"eslint": "^9.14.0",
"globals": "^15.12.0",
"jest": "^29.7.0"
}
}