forked from small-tech/auto-encrypt-localhost
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.9 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
{
"name": "@small-tech/auto-encrypt-localhost",
"version": "6.1.0",
"description": "Automatically provisions and installs locally-trusted TLS certificates for Node.js https servers (including Express.js, etc.) using mkcert.",
"keywords": [
"mkcert",
"https",
"tls",
"auto encrypt",
"localhost",
"small tech",
"automatic"
],
"main": "index.js",
"funding": {
"type": "foundation",
"url": "https://small-tech.org/fund-us/"
},
"bin": "bin/auto-encrypt-localhost.js",
"scripts": {
"start": "node index.js",
"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",
"generate-dependency-diagram": "mkdir -p artefacts && node_modules/.bin/depcruise --max-depth 1 --output-type dot index.js | dot -T svg > artefacts/dependency-graph.svg",
"generate-developer-documentation": "npm run generate-dependency-diagram && node_modules/.bin/jsdoc2md --private --template developer-documentation.hbs --files index.js > developer-documentation.md"
},
"repository": {
"type": "git",
"url": "https://source.small-tech.org/site.js/lib/auto-encrypt-localhost.git"
},
"author": {
"name": "Aral Balkan",
"email": "[email protected]",
"url": "https://ar.al"
},
"license": "AGPL-3.0-or-later",
"nyc": {
"exclude": [
"test/**/*.js",
"lib/util/*.js"
]
},
"dependencies": {
"encodeurl": "^1.0.2",
"fs-extra": "^8.1.0",
"server-destroy": "^1.0.1",
"syswide-cas": "^5.3.0"
},
"devDependencies": {
"bent": "^7.3.0",
"dependency-cruiser": "^8.1.0",
"jsdoc": "^3.6.3",
"jsdoc-to-markdown": "^5.0.3",
"nyc": "^14.1.1",
"tap-nyc": "^1.0.3",
"tap-spec": "^5.0.0",
"tape": "^4.13.0"
},
"pkg": {
"assets": "mkcert-bin/*"
}
}