-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
63 lines (63 loc) · 1.52 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
{
"name": "https-localhost",
"version": "4.7.1",
"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=lcov",
"preuninstall": "node certs.js -u",
"start": "node index.js"
},
"bin": {
"serve": "index.js"
},
"pkg": {
"scripts": "*.js",
"targets": [
"node16-macos-x64",
"node16-linux-x64",
"node16-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",
"cors": "^2.8.5",
"express": "^4.17.1",
"uglify-js": "^3.15.1",
"spdy": "^4.0.2"
},
"devDependencies": {
"eslint": "^7.25.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"mocha": "^8.4.0",
"nyc": "^15.1.0",
"sinon": "^10.0.0"
}
}