-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
49 lines (49 loc) · 1.19 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
48
49
{
"name": "connect-cloudant-store",
"version": "1.0.0",
"description": "Node JS express-session storage connector for IBM Cloudant",
"main": "index.js",
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^2.10.2",
"istanbul": "^0.4.5",
"mocha": "^6.1.0",
"pre-commit": "^1.1.3",
"sinon": "^1.17.6"
},
"dependencies": {
"@cloudant/cloudant": "^4.1.0",
"debug": "^2.6.9",
"express-session": "^1.13.0",
"lodash": "^4.14.0"
},
"scripts": {
"test": "mocha test --recursive",
"coverage": "istanbul cover _mocha -- --recursive",
"lint": "eslint index.js test lib"
},
"pre-commit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/adriantanasa/connect-cloudant-store.git"
},
"keywords": [
"connect-cloudant-store",
"cloudant",
"connect cloudant",
"cloudant session",
"express-session",
"couchdb",
"bluemix",
"ibm"
],
"author": "Adrian Tanasa <adrian_tanasa@yahoo.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/adriantanasa/connect-cloudant-store/issues"
},
"homepage": "https://github.com/adriantanasa/connect-cloudant-store#readme"
}