-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.4 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
{
"name": "express-users",
"version": "0.3.2",
"description": "A drop-in user dashboard for express.",
"main": "index.js",
"repository": "https://github.com/themouette/express-users.git",
"author": "themouette",
"scripts": {
"start": "forever samples/nedb/index.js",
"dev": "npm run sample-memory",
"sample-memory": "DEBUG=users:*,samples:* nodemon samples/server/index.js",
"sample-nedb": "DEBUG=users:*,samples:* nodemon samples/nedb/index.js",
"sample-jade": "DEBUG=users:*,samples:* nodemon samples/jade/index.js",
"unit": "mocha tests/unit/**/*",
"functionnal": "screenstory --extension tests/wd/commands/index tests/wd/specs/**/*",
"test": "npm run unit && npm run functionnal"
},
"dependencies": {
"async": "^0.2.8",
"cookie-parser": "^1.3.2",
"cookie-session": "^1.0.2",
"debug": "^1.0.4",
"express": "^4.6.1",
"forever": "^0.11.1",
"lodash": "^2.4.1",
"method-override": "^2.1.2",
"nunjucks": "^1.0.5",
"verror": "^1.4.0"
},
"devDependencies": {
"chai": "^1.9.1",
"freeport": "^1.0.3",
"mocha": "^1.21.4",
"nodemon": "^1.2.1",
"screenstory": "^0.3.1"
},
"optionalDependencies": {
"mongodb": "^1.4.8",
"express-session": "^1.7.0",
"body-parser": "^1.5.0",
"connect-flash": "^0.1.1",
"nedb": "^0.11.1",
"jade": "^1.7.0",
"passport": "^0.2.0",
"passport-local": "^1.0.0"
}
}