forked from daquinoaldo/https-localhost
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.71 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
63
64
65
66
{
"name": "https-localhost",
"version": "4.2.0",
"description": "HTTPS server running on localhost",
"main": "index.js",
"scripts": {
"pretest": "eslint --ignore-path .gitignore .",
"test": "node node_modules/nyc/bin/nyc.js node_modules/mocha/bin/_mocha --exit",
"posttest": "node node_modules/nyc/bin/nyc.js report --reporter=html",
"coveralls": "node node_modules/nyc/bin/nyc.js report --reporter=text-lcov | node_modules/coveralls/bin/coveralls.js",
"preuninstall": "node certs.js -u",
"build": "pkg --out-path build .",
"start": "node index.js"
},
"bin": {
"serve": "index.js"
},
"pkg": {
"scripts": "*.js",
"targets": [
"node10-macos-x64",
"node10-linux-x64",
"node10-win-x64"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/daquinoaldo/https-localhost.git"
},
"keywords": [
"localhost",
"https",
"http2",
"https-server",
"SSL",
"express",
"expressjs",
"express-js"
],
"author": "Aldo D'Aquino",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/daquinoaldo/https-localhost/issues"
},
"homepage": "https://daquinoaldo.github.io/https-localhost",
"dependencies": {
"appdata-path": "^1.0.0",
"compression": "^1.7.4",
"express": "^4.17.1",
"express-minify": "^1.0.0",
"spdy": "^4.0.1"
},
"devDependencies": {
"coveralls": "^3.0.6",
"eslint": "^6.1.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"pkg": "^4.4.0",
"sinon": "^7.4.1"
}
}