-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 937 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 937 Bytes
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-db2",
"description": "An IBM DB2 session store for Connect and Express",
"version": "0.6.0",
"author": "Ali Lokhandwala <ali@huestones.co.uk>",
"license": "MIT",
"main": "./index.js",
"repository": {
"type": "git",
"url": "git://github.com/wallali/connect-db2"
},
"dependencies": {
"debug": "^2.2.0",
"extend": "^3.0.0",
"ibm_db": "^2.0.0"
},
"devDependencies": {
"eslint": "^6.6.0",
"express-session": "^1.14.0",
"istanbul": "^0.4.4",
"mocha": "^2.5.3",
"sinon": "^1.17.4"
},
"engines": {
"node": ">=1.2.0"
},
"files": [
"LICENSE",
"History.md",
"Readme.md",
"index.js",
"lib/"
],
"scripts": {
"pretest": "npm install",
"test": "node_modules/.bin/mocha",
"lint": "node_modules/.bin/eslint index.js test lib",
"coverage": "node_modules/.bin/istanbul cover node_modules/mocha/bin/_mocha -- -R spec"
}
}