-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.47 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@ramlmn/serv",
"version": "0.8.0",
"author": "@r0mflip",
"description": "Static file server with https and http2",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ramlmn/serv"
},
"bugs": {
"url": "https://github.com/ramlmn/serv/issues"
},
"homepage": "https://github.com/ramlmn/serv#readme",
"engines": {
"node": ">=10.9.0"
},
"keywords": [
"serv",
"server",
"static",
"http",
"https",
"http2",
"directory",
"listing"
],
"scripts": {
"start": "node ./bin/serv.js -p 5000 -c -l -s -d .",
"lint": "eslint .",
"test": "node test/test.js | tap-spec",
"gencerts": "openssl req -x509 -nodes -days 365 -newkey rsa:2048 -subj \"/C=LN/ST=Intranet/L=Local/O=Local\\ Network/OU=Network/CN=localhost/emailAddress=local@network\" -keyout \"./bin/local.key\" -out \"./bin/local.cert\" -reqexts v3_req -extensions v3_ca"
},
"main": "./lib/serv.js",
"bin": {
"serv": "./bin/serv.js"
},
"files": [
"bin/*",
"lib/*",
".eslintrc",
"LICENCE"
],
"dependencies": {
"arg": "^4.1.0",
"compression": "^1.7.4",
"etag": "^1.8.1",
"fresh": "^0.5.2",
"get-port": "^5.0.0",
"kleur": "^3.0.3",
"mime": "^2.4.3",
"range-parser": "^1.2.1"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-r0mflip": "^0.2.1",
"node-fetch": "^2.6.0",
"tap-spec": "^5.0.0",
"tape": "^4.10.1",
"tape-promise": "^4.0.0"
}
}