-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
83 lines (83 loc) · 3.33 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@small-tech/auto-encrypt",
"version": "3.1.0",
"description": "Adds automatic provisioning and renewal of Let’s Encrypt TLS certificates with OCSP Stapling to Node.js https servers (including Express.js, etc.)",
"keywords": [
"let's encrypt",
"acme",
"http-01",
"https",
"tls",
"auto encrypt",
"small tech",
"automatic"
],
"author": {
"name": "Aral Balkan",
"email": "aral@small-tech.org",
"url": "https://ar.al"
},
"license": "AGPL-3.0-or-later",
"type": "module",
"main": "index.js",
"files": [
"lib",
"typedefs"
],
"funding": {
"type": "foundation",
"url": "https://small-tech.org/fund-us/"
},
"homepage": "https://github.com/small-tech/auto-encrypt",
"bugs": "https://github.com/small-tech/auto-encrypt/issues",
"repository": {
"type": "git",
"url": "https://github.com/small-tech/auto-encrypt.git"
},
"scripts": {
"test": "PEBBLE_VA_NOSLEEP=1 PEBBLE_WFE_NONCEREJECT=0 QUIET=true esm-tape-runner 'test/**/*.js' | tap-monkey",
"test-debug": "PEBBLE_VA_NOSLEEP=1 PEBBLE_WFE_NONCEREJECT=0 esm-tape-runner 'test/**/*.js' | tap-monkey",
"test-pebble-sleep": "PEBBLE_WFE_NONCEREJECT=0 QUIET=true esm-tape-runner 'test/**/*.js' | tap-monkey",
"test-pebble-sleep-debug": "PEBBLE_WFE_NONCEREJECT=0 esm-tape-runner 'test/**/*.js' | tap-monkey",
"test-pebble-sleep-noncereject": "QUIET=true esm-tape-runner 'test/**/*.js' | tap-monkey",
"test-pebble-sleep-noncereject-debug": "esm-tape-runner 'test/**/*.js' | tap-monkey",
"test-staging": "STAGING=true QUIET=true esm-tape-runner 'test/**/*.js' | tap-monkey",
"test-staging-debug": "STAGING=true esm-tape-runner 'test/**/*.js' | tap-monkey",
"coverage": "PEBBLE_VA_NOSLEEP=1 PEBBLE_WFE_NONCEREJECT=0 QUIET=true c8 esm-tape-runner 'test/**/*.js' | tap-monkey",
"coverage-pebble-sleep": "PEBBLE_WFE_NONCEREJECT=0 QUIET=true c8 esm-tape-runner 'test/**/*.js' | tap-monkey",
"coverage-pebble-sleep-noncereject": "QUIET=true c8 esm-tape-runner 'test/**/*.js' | tap-monkey",
"coverage-staging": "STAGING=true QUIET=true c8 esm-tape-runner 'test/**/*.js' | tap-monkey",
"generate-dependency-diagram": "node_modules/.bin/depcruise --exclude \"^node_modules|lib/util|typedefs|^https|^crypto$|^fs$|^os$|^tls$|^path$|^events$|^http$|^util\" --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 typedefs/**/*.js --files index.js --files lib/*.js > developer-documentation.md"
},
"c8": {
"exclude": [
"test/**/*.js",
"lib/test-helpers/*.js",
"typedefs/lib/*.js",
"lib/util/*.js",
"lib/x.509/*.js"
]
},
"dependencies": {
"bent": "aral/bent#errors-with-response-headers",
"encodeurl": "^1.0.2",
"jose": "^1.24.0",
"moment": "^2.24.0",
"node-forge": "^1.3.1",
"ocsp": "^1.2.0",
"server-destroy": "^1.0.1"
},
"devDependencies": {
"@small-tech/esm-tape-runner": "^1.0.3",
"@small-tech/node-pebble": "^4.2.4",
"@small-tech/tap-monkey": "^1.3.0",
"c8": "^7.11.3",
"dependency-cruiser": "^9.15.1",
"esbuild": "^0.8.53",
"jsdoc": "^3.6.6",
"jsdoc-to-markdown": "^6.0.1",
"tape": "^5.2.1",
"wtfnode": "^0.8.1"
}
}