-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
40 lines (40 loc) · 848 Bytes
/
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
{
"name": "connect-mongostore",
"version": "0.1.4",
"description": "MongoDB session store for Connect",
"keywords": [
"connect",
"mongo",
"mongodb",
"session",
"express"
],
"author": "Ilya Shaisultanov <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/diversario/connect-mongostore.git"
},
"bugs": {
"url": "https://github.com/diversario/connect-mongostore/issues"
},
"dependencies": {
"mongodb": "~1.4",
"lodash": "~2.4"
},
"directories": {
"lib": "./lib"
},
"devDependencies": {
"mocha": "~1.19",
"connect": "~2.17",
"mongoose": "~3.8",
"coveralls": "~2.10",
"istanbul": "~0.2",
"mocha-istanbul": "~0.2"
},
"scripts": {
"test": "make coveralls"
},
"main": "index",
"engines": "node >= 0.8.x"
}