-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.23 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "@hyperwell/gateway",
"version": "0.2.0",
"author": "Jan Kaßel <[email protected]>",
"description": "A P2P system that leverages collaboration, local-first principles, and more on W3C Web Annotations",
"private": true,
"bin": {
"hyperwell-gateway": "./bin/server.js"
},
"scripts": {
"start": "node ./bin/server.js",
"test": "tape test/*.js"
},
"license": "MIT",
"dependencies": {
"@hapi/boom": "^8.0.1",
"@hapi/hapi": "^18.4.1",
"browserify-package-json": "^1.0.1",
"debug": "^4.1.1",
"etag": "^1.8.1",
"hapi-plugin-websocket": "^2.3.5",
"hypermerge": "github:automerge/hypermerge#63182f",
"hyperswarm": "^2.15.3",
"minimist": "^1.2.5",
"node-cache": "^5.1.0",
"uuid": "^3.4.0"
},
"devDependencies": {
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"tape": "^4.13.2"
},
"engines": {
"node": ">=12.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,json,md}": [
"prettier --write",
"git add"
]
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"bracketSpacing": false
}
}