-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
39 lines (39 loc) · 1010 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
{
"name": "aerospike-session-store",
"version": "0.4.0",
"description": "Aerospike session store for Express.js session middleware",
"main": "index.js",
"keywords": [
"aerospike",
"session",
"express"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/aerospike-community/aerospike-session-store-expressjs"
},
"dependencies": {
"aerospike": "^3.0.0",
"debug": "^2.6.9"
},
"devDependencies": {
"blue-tape": "^0.2",
"bluebird": "^3.5.1",
"codecov": "^3.6.5",
"express-session": "^1.15.6",
"nyc": "^15.0.0",
"standard": "^10.0",
"tape": "^4.8.0"
},
"scripts": {
"test": "DEBUG=session:* tape \"test/*_test.js\"",
"posttest": "standard",
"bench": "node benchmark/aerospikebench",
"coverage": "nyc npm test && nyc --reporter=lcov report",
"codecov": "codecov"
},
"bugs": {
"url": "https://github.com/aerospike-community/aerospike-session-store-expressjs/issues"
}
}