-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
46 lines (46 loc) · 1.3 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
{
"name": "connect-mongodb-session",
"version": "1.1.1",
"description": "MongoDB session store for connect/express built by MongoDB",
"keywords": [
"connect",
"mongo",
"mongodb",
"session",
"express"
],
"author": "Valeri Karpov <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/mongodb-js/connect-mongodb-session.git"
},
"dependencies": {
"mongodb": "~2.1.0"
},
"devDependencies": {
"acquit": "0.1.0",
"cookie": "0.1.2",
"express": "4.10.4",
"express-session": "1.9.2",
"gulp": "3.8.10",
"gulp-mocha": "2.0.0",
"gulp-jscs": "1.4.0",
"istanbul": "0.3.2",
"jscs": "1.9.0",
"mocha": "2.2.5",
"request": "2.48.0",
"strawman": "0.0.1"
},
"main": "index.js",
"scripts": {
"test": "env NODE_PATH=../ ./node_modules/mocha/bin/mocha ./test/*.test.js",
"test-travis": "env NODE_PATH=../ ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- -R spec ./test/*.test.js",
"unit-coverage": "env NODE_PATH=../ ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- -R spec ./test/unit.test.js"
},
"jscsConfig": {
"preset": "airbnb",
"requireMultipleVarDecl": null,
"disallowMultipleVarDecl": true
},
"engines": "node >= 0.10.0"
}