-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 997 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 997 Bytes
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
{
"name": "http2-server",
"version": "0.1.6",
"description": "A simple, zero dependency, Node.js HTTP2 server for development projects.",
"homepage": "https://github.com/tforster/http2-server#readme",
"author": "Troy Forster <troy.forster@gmail.com> (https://www.tforster.com)",
"license": "MIT",
"keywords": [
"http",
"static",
"http2",
"server",
"development",
"amplify"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tforster/http2-server.git"
},
"bugs": {
"url": "https://github.com/tforster/http2-server/issues"
},
"main": "src/index.js",
"scripts": {
"create-certs": "sh src/create-certs.sh ./src/",
"bump": "npm version $@ --git-tag-version=false",
"test": "test/index.js"
},
"dependencies": {},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-prettier": "^3.1.2",
"prettier": "^1.19.1"
}
}