-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.17 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
{
"author": "Carlos Lopez Jr. <[email protected]> (https://shortfuse.org/)",
"description": "An opt-in, stream-based approach to Web Hosting with NodeJS",
"devDependencies": {
"@fidm/x509": "^1.2.1",
"@types/node": "^16.18.40",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"ava": "^4.1.0",
"c8": "^7.11.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-canonical": "^4.9.0",
"eslint-plugin-jsdoc": "^46.4.6",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-unicorn": "^48.0.1"
},
"engines": {
"node": ">v16.13"
},
"exports": {
"./*": "./*"
},
"keywords": [
"http",
"http2",
"push",
"host",
"listener",
"stream",
"middleware",
"cors",
"gzip"
],
"license": "MIT",
"name": "webhoster",
"scripts": {
"debug-test": "ava --serial",
"posttestall": "c8 report",
"posttestallsync": "c8 report",
"pretestall": "rimraf coverage",
"pretestallsync": "rimraf coverage",
"test": "c8 ava",
"testall": "scripts/test-all.sh",
"testallsync": "scripts/test-all-sync.sh"
},
"type": "module",
"version": "0.2.0"
}