forked from ayanray/express4_SSL_example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 734 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 734 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
{
"name": "express4_SSL_example",
"version": "0.1.0",
"description": "Working example showing Express 4 and SSL. More info at http://blog.ayanray.com/2015/06/adding-https-ssl-to-express-4-x-applications/",
"main": "app.js",
"scripts": {
"start": "node app.js",
"test": "echo \"From the author: There are no tests for this package\" && exit 1"
},
"repository": {
"type": "git",
"url": "git://github.com/ayanray/express4_SSL_example.git"
},
"keywords": [
"Express",
"4",
"SSL",
"HTTPS",
"TLS/SSL"
],
"author": "Ayan Ray",
"license": "MIT",
"bugs": {
"url": "https://github.com/ayanray/express4_SSL_example/issues"
},
"dependencies": {
"express": ">=4.0.0"
}
}