-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.55 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.55 KB
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
{
"name": "@small-tech/https",
"version": "2.2.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",
"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/"
},
"repository": {
"type": "git",
"url": "https://github.com/small-tech/https.git"
},
"scripts": {
"example": "node example/",
"test": "QUIET=true tape 'test/**/*.js' | tap-spec",
"coverage": "QUIET=true nyc tape 'test/**/*.js' | tap-nyc",
"test-debug": "tape 'test/**/*.js' | tap-spec",
"coverage-debug": "nyc tape 'test/**/*.js' | tap-nyc"
},
"author": {
"name": "Aral Balkan",
"email": "[email protected]",
"url": "https://ar.al"
},
"license": "AGPL-3.0-or-later",
"dependencies": {
"@small-tech/auto-encrypt": "^2.3.0",
"@small-tech/auto-encrypt-localhost": "^6.1.0",
"fs-extra": "^9.0.1"
},
"devDependencies": {
"@small-tech/cross-platform-hostname": "^1.0.0",
"bent": "^7.3.12",
"nyc": "^15.1.0",
"tap-nyc": "^1.0.3",
"tap-spec": "https://github.com/small-tech/tap-spec",
"tape": "^5.0.1",
"wtfnode": "^0.8.1"
},
"nyc": {
"exclude": [
"test/**/*.js",
"lib/util/*.js"
]
}
}