-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 880 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 880 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
{
"name": "ExpressAuth",
"version": "1.0.0",
"description": "A modular implementation of authentication in a Node.js Express application.",
"main": "index.js",
"repository": "",
"author": "Nick Barth",
"license": "MIT",
"dependencies": {
"bcrypt": "^0.8.4",
"body-parser": "^1.13.2",
"cookie-parser": "^1.3.5",
"csurf": "^1.8.3",
"express": "^4.13.1",
"express-session": "^1.11.3",
"jade": "^1.11.0",
"mongoose": "^4.1.0",
"nodemailer": "^1.4.0"
},
"scripts": {
"start": "NODE_ENV=production node --harmony index.js",
"test": "NODE_ENV=test node node_modules/mocha/bin/mocha --harmony --recursive --full-trace test/"
},
"devDependencies": {
"mocha": "^2.2.5",
"should": "^7.0.2",
"superagent": "^1.2.0",
"supertest": "^1.0.1"
},
"engines": {
"node": "~0.8.21",
"npm": "~1.2.12"
}
}