forked from jdesboeufs/connect-mongo
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.53 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.53 KB
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
48
49
50
51
52
53
{
"name": "connect-mongo",
"version": "1.3.2",
"description": "MongoDB session store for Express and Connect",
"keywords": [
"connect",
"mongo",
"mongodb",
"session",
"express"
],
"contributors": [
"Casey Banner <kcbanner@gmail.com>",
"Jerome Desboeufs <jerome.desboeufs@gmail.com>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kcbanner/connect-mongo.git"
},
"bugs": {
"url": "https://github.com/kcbanner/connect-mongo/issues"
},
"dependencies": {
"bluebird": "^3.0",
"mongodb": ">= 1.2.0 <3.0.0"
},
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-plugin-transform-es2015-arrow-functions": "^6.3.13",
"babel-plugin-transform-es2015-block-scoping": "^6.3.13",
"babel-plugin-transform-es2015-classes": "^6.3.15",
"babel-plugin-transform-es2015-object-super": "^6.3.13",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-register": "^6.3.13",
"eslint": "^3.1.1",
"expect.js": "^0.3.1",
"express-session": ">= 1.0.0",
"istanbul": "^0.4.1",
"mocha": "^2.3.4",
"mongoose": ">= 2.6.0 < 5.0"
},
"scripts": {
"test-unit-es5": "mocha --compilers js:babel-register",
"test-unit": "mocha",
"cover": "istanbul cover -x 'src-es5/**' _mocha",
"lint": "eslint src test",
"test": "npm run lint && npm run transpile && npm run cover",
"test-es5": "npm run transpile && npm run test-unit-es5",
"transpile": "babel src --out-dir src-es5",
"prepublish": "npm run transpile"
}
}