forked from markjovis/http2-express
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.18 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
{
"name": "http2-express",
"description": "HTTP/2 support for Express",
"version": "1.0.0",
"author": "Mark Jovis",
"contributors": [
"Mark Jovis <[email protected]>"
],
"license": "MIT",
"keywords": [
"express",
"http2",
"https",
"push",
"support",
"compatibility",
"api",
"server"
],
"main": "dist/index.js",
"module": "dist/index.js",
"scripts": {
"build": "babel src -d dist",
"prepublishOnly": "npm run build",
"createTypeFiles": "npx -p typescript tsc src/*.js --declaration --allowJs --emitDeclarationOnly --outDir types",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@babel/cli": "^7.23.9",
"@babel/eslint-parser": "^7.23.10",
"@babel/preset-env": "^7.23.9",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1"
},
"engines": {
"node": ">= 20.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/markjovis/http2-express.git"
},
"bugs": {
"url": "https://github.com/markjovis/http2-express/issues"
},
"homepage": "https://github.com/markjovis/http2-express#readme"
}