-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.09 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.09 KB
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
{
"name": "garnet",
"version": "0.1.0",
"description": "A remote browser isolation prototype that replays remote browser draw commands via WebAssembly in local.",
"main": "server/index.js",
"scripts": {
"start": "nodemon server/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier-standard --lint --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ECS-251-W2020/final-project-sudo.git"
},
"author": "",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/ECS-251-W2020/final-project-sudo/issues"
},
"homepage": "https://github.com/ECS-251-W2020/final-project-sudo#readme",
"dependencies": {
"koa": "^2.11.0",
"koa-socket-2": "^1.2.0",
"koa-static": "^5.0.0",
"puppeteer-core": "^2.1.1"
},
"devDependencies": {
"husky": "^4.2.3",
"lint-staged": "^10.0.7",
"nodemon": "^2.0.2",
"prettier-standard": "^16.1.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier-standard --lint --fix"
]
}
}