-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
45 lines (45 loc) · 945 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
{
"name": "simplehttp2server",
"version": "5.0.0",
"description": "simplehttp2server wrapper that makes it seamlessly available as a local dependency",
"license": "MIT",
"repository": "1000ch/simplehttp2server",
"author": {
"name": "Shogo Sensui",
"email": "[email protected]",
"url": "https://github.com/1000ch"
},
"engines": {
"node": ">=12.20"
},
"type": "module",
"scripts": {
"postinstall": "node lib/install.js",
"test": "xo && ava"
},
"files": [
"index.js",
"lib"
],
"keywords": [
"server",
"http",
"http2"
],
"bugs": {
"url": "https://github.com/1000ch/simplehttp2server/issues"
},
"homepage": "https://github.com/1000ch/simplehttp2server#readme",
"dependencies": {
"bin-wrapper": "^4.1.0"
},
"devDependencies": {
"ava": "^4.0.0",
"execa": "^6.0.0",
"tempy": "^2.0.0",
"xo": "^0.47.0"
},
"xo": {
"space": 2
}
}