forked from ralphholzmann/letsencrypt-express
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.26 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
{
"name": "letsencrypt-express",
"version": "1.2.0",
"description": "Free SSL and Automatic HTTPS for node.js with Express, Connect, and other middleware systems",
"main": "index.js",
"bin": {
"letsencrypt-express": "bin/lex.js",
"lex": "bin/lex.js"
},
"files": [
"lib/",
"bin/",
"examples/",
"index.js"
],
"directories": {
"example": "examples"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Daplie/letsencrypt-express.git"
},
"keywords": [
"acme",
"free",
"ssl",
"tls",
"https",
"letsencrypt",
"le",
"boulder",
"express",
"expressjs",
"connect",
"middleware"
],
"author": "AJ ONeal <[email protected]> (https://coolaj86.com/)",
"license": "(MIT OR Apache-2.0)",
"bugs": {
"url": "https://github.com/Daplie/letsencrypt-express/issues"
},
"homepage": "https://github.com/Daplie/letsencrypt-express#readme",
"devDependencies": {
"body-parser": "^1.14.2",
"cli": "^0.11.1",
"express": "^4.13.3"
},
"dependencies": {
"homedir": "^0.6.0",
"letsencrypt": "^1.5.0",
"localhost.daplie.com-certificates": "^1.1.2",
"mkdirp": "^0.5.1"
}
}