-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 712 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 712 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
{
"name": "nodejs_directory_listing_server",
"version": "0.0.1",
"description": "Simple directory listing server.",
"main": "server.js",
"dependencies": {
"nodemon": "*",
"forever": "*",
"express": "^4.15.2",
"body-parser": "^1.17.1",
"multer": "^1.3.0",
"fast-csv": "^2.4.0",
"sha.js": "^2.4.8",
"passport-http": "^0.3.0",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"selfsigned": "^1.9.1"
},
"devDependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "./node_modules/nodemon/bin/nodemon.js --exitcrash server.js"
},
"author": "Michael Steele",
"license": "UNLICENSED",
"private": true
}