-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.03 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.03 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
{
"name": "https-ssl-example",
"version": "1.0.1",
"description": "zero-config HTTPS server example (complete with bogus TLS/SSL 2048-bit RSA PEM certs)",
"main": "serve.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node serve.js"
},
"repository": {
"type": "git",
"url": "https://github.com/coolaj86/nodejs-ssl-example.git"
},
"keywords": [
"ssl",
"tls",
"https",
"rsa",
"pem",
"example",
"demo",
"test",
"openssl",
"crt",
"p12",
"csr",
"certificate",
"certs",
"cert",
"key",
"private",
"public"
],
"author": "AJ ONeal <coolaj86@gmail.com> (http://coolaj86.com/)",
"license": "Apache2",
"bugs": {
"url": "https://github.com/coolaj86/nodejs-ssl-example/issues"
},
"homepage": "https://github.com/coolaj86/nodejs-ssl-example",
"dependencies": {
"bluebird": "^2.9.3",
"check-ip-address": "^1.1.1",
"express": "^4.11.2",
"request": "^2.51.0",
"ssl-root-cas": "^1.1.10"
}
}