UNPKG

2.81 kBJSONView Raw
1{
2 "name": "@http2/server",
3 "description": "HTTP/2 webserver for static files",
4 "author": "Sebastiaan Deckers <sebdeckers83@gmail.com>",
5 "repository": "gitlab:http2/server",
6 "license": "ISC",
7 "version": "4.5.2",
8 "main": "src/master.js",
9 "bin": {
10 "http2server": "bin.js"
11 },
12 "scripts": {
13 "prepublishOnly": "npm test",
14 "test": "npm run lint && npm run proof",
15 "lint": "standard --verbose | snazzy",
16 "proof": "node -- node_modules/.bin/ava",
17 "start": "node -- bin.js",
18 "server": "npm run start -- start --config test/fixtures/http2server.config.js --root test/fixtures/public",
19 "client": "nghttp -vns https://localhost:8443/",
20 "benchmark": "h2load -v -n 10000 https://localhost:8443/index.html",
21 "rebuild": "npm rebuild --nodedir=/Users/seb/Code/nodejs/http2 && npm install iltorb --nodedir=/Users/seb/Code/nodejs/http2",
22 "openssl-alpn": "echo | /usr/local/opt/openssl/bin/openssl s_client -alpn h2 -connect http2.live:443 | grep ALPN"
23 },
24 "devDependencies": {
25 "ava": "^0.19.1",
26 "benchmark": "^2.1.4",
27 "concat-stream": "^1.6.0",
28 "microtime": "^2.1.6",
29 "node-fetch": "^1.7.3",
30 "snazzy": "^7.0.0",
31 "standard": "^10.0.3",
32 "through2-spy": "^2.0.0"
33 },
34 "dependencies": {
35 "@http2/configuration": "^4.8.0",
36 "accepts": "^1.3.4",
37 "cache-digest": "^1.0.1",
38 "child-process-promise": "^2.2.0",
39 "chokidar": "^1.6.1",
40 "command-exists": "^1.0.2",
41 "compressible": "^2.0.12",
42 "connect": "^3.6.5",
43 "cookies": "^0.7.1",
44 "d3-queue": "^3.0.3",
45 "debounce-collect": "^1.0.2",
46 "debug": "^2.6.9",
47 "emoji-regex": "^6.5.1",
48 "event-to-promise": "^0.8.0",
49 "expr-eval": "^1.2.0",
50 "extglob": "^1.1.0",
51 "find-process": "^1.1.0",
52 "glob": "^7.1.1",
53 "hard-rejection": "^1.0.0",
54 "hosted-git-info": "^2.5.0",
55 "http-errors": "^1.6.2",
56 "is-domain-name": "^1.0.1",
57 "is-ip": "^2.0.0",
58 "is-running": "^2.1.0",
59 "jsonschema": "^1.2.0",
60 "lodash.clonedeep": "^4.5.0",
61 "lodash.defaultsdeep": "^4.6.0",
62 "lru-cache": "^4.1.1",
63 "micromatch": "^3.1.4",
64 "middleware-plain-error-handler": "^2.0.0",
65 "mime": "^1.4.1",
66 "mkdirp": "^0.5.1",
67 "negotiator": "^0.6.1",
68 "ocsp": "^1.1.0",
69 "opn": "^5.1.0",
70 "os-name": "^2.0.1",
71 "parseurl": "^1.3.2",
72 "physical-cpu-count": "^2.0.0",
73 "read-pkg-up": "^2.0.0",
74 "recursive-readdir": "^2.1.1",
75 "resolve-path": "^1.3.3",
76 "rimraf": "^2.6.2",
77 "send": "^0.16.1",
78 "shell-escape": "^0.2.0",
79 "slash": "^1.0.0",
80 "stream-to-promise": "^2.2.0",
81 "until-before": "^1.0.3",
82 "update-notifier": "^2.3.0",
83 "user-home": "^2.0.0",
84 "yargs": "^8.0.2"
85 },
86 "ava": {
87 "files": [
88 "test/**/*.js"
89 ],
90 "source": [
91 "src/**/*.js"
92 ]
93 }
94}