-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 1.99 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
67
68
{
"name": "@small-tech/https",
"version": "3.1.0",
"description": "A drop-in standard Node.js HTTPS module replacement with both automatic development-time (localhost) certificates via Auto Encrypt Localhost and automatic production certificates via Auto Encrypt.",
"main": "index.js",
"files": [
"lib"
],
"type": "module",
"keywords": [
"let's encrypt",
"acme",
"http-01",
"https",
"tls",
"auto encrypt",
"auto encrypt localhost",
"small tech",
"small web",
"automatic"
],
"funding": {
"type": "foundation",
"url": "https://small-tech.org/fund-us/"
},
"homepage": "https://github.com/small-tech/https",
"bugs": "https://github.com/small-tech/https/issues",
"repository": {
"type": "git",
"url": "https://github.com/small-tech/https.git"
},
"scripts": {
"unlockSudo": "sudo echo 'Got sudo permissions.\n'",
"example": "node example/",
"test": "npm run unlockSudo && QUIET=true esm-tape-runner 'test/**/*.js' | tap-monkey",
"coverage": "npm run unlockSudo && QUIET=true c8 esm-tape-runner 'test/**/*.js' | tap-monkey",
"test-debug": "npm run unlockSudo && esm-tape-runner 'test/**/*.js' | tap-monkey",
"coverage-debug": "npm run unlockSudo && c8 esm-tape-runner 'test/**/*.js' | tap-monkey",
"test-on-windows": "node test/index.js",
"coverage-on-windows": "c8 node test/index.js"
},
"author": {
"name": "Aral Balkan",
"email": "aral@small-tech.org",
"url": "https://ar.al"
},
"license": "AGPL-3.0-or-later",
"dependencies": {
"@small-tech/auto-encrypt": "^3.1.0",
"@small-tech/auto-encrypt-localhost": "^7.0.7",
"fs-extra": "^9.0.1"
},
"devDependencies": {
"@small-tech/cross-platform-hostname": "^1.0.0",
"@small-tech/esm-tape-runner": "^1.0.3",
"@small-tech/tap-monkey": "^1.3.0",
"bent": "^7.3.12",
"c8": "^7.6.0",
"tape": "^5.2.2",
"wtfnode": "^0.8.1"
},
"nyc": {
"exclude": [
"test/**/*.js",
"lib/util/*.js"
]
}
}