-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
41 lines (41 loc) · 1.28 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
{
"name": "connect-mongodb-session",
"version": "5.0.0",
"description": "MongoDB session store for connect/express built by MongoDB",
"keywords": [
"connect",
"mongo",
"mongodb",
"session",
"express"
],
"author": "Valeri Karpov <valeri.karpov@mongodb.com>",
"repository": {
"type": "git",
"url": "https://github.com/mongodb-js/connect-mongodb-session.git"
},
"dependencies": {
"archetype": "0.13.x",
"mongodb": "5.x || 6.x"
},
"devDependencies": {
"acquit": "1.0.5",
"acquit-ignore": "0.1.0",
"acquit-markdown": "0.1.0",
"cookie": "0.3.1",
"express": "4.17.0",
"express-session": "1.17.0",
"istanbul": "0.4.5",
"mocha": "3.1.2",
"sinon": "17.0.1",
"strawman": "0.0.1",
"superagent": "3.x"
},
"main": "index.js",
"scripts": {
"docs": "acquit-markdown -r acquit-ignore -p './test/examples.test.js' -h './HEADER.md' > README.md",
"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"
}
}