-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 977 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 977 Bytes
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
{
"name": "certnode",
"version": "0.0.1",
"description": "Generate Let's Encrypt certificates for your domains",
"main": "lib/index.js",
"scripts": {
"doc": "jsdoc README.md lib/**",
"lint": "eslint example.js lib/ test/",
"test": "NODE_ENV=test nyc mocha --recursive --exit"
},
"keywords": [
"ACME",
"ACMEv2",
"HTTP",
"HTTPS",
"RFC8555",
"TLS",
"certbot",
"certificate",
"domain",
"domain name",
"letsencrypt"
],
"author": "Zachary Balder",
"license": "ISC",
"dependencies": {
"jose-node-cjs-runtime": "^3.12.2",
"pem": "^1.14.4"
},
"devDependencies": {
"@sinonjs/fake-timers": "^7.1.2",
"eslint": "^7.27.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"jsdoc": "^3.6.7",
"mocha": "^8.4.0",
"nyc": "^15.1.0"
}
}