-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
44 lines (44 loc) · 882 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
40
41
42
43
44
{
"name": "connect-memcached",
"version": "2.0.0",
"description": "Memcached session store for Connect",
"keywords": [
"memcached",
"connection",
"session",
"store",
"cache"
],
"author": "Michał Thoma <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/balor/connect-memcached"
},
"dependencies": {
"buffer-from": "1.1.0",
"kruptein": "3.0.x",
"memcached": "2.2.x"
},
"devDependencies": {
"express": "^4.17.3",
"express-session": "^1.17.2",
"jest": "^27.5.1",
"supertest": "^6.2.2"
},
"scripts": {
"test": "NODE_ENV=test jest --testTimeout=10000"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
},
"engines": {
"node": ">= 0.10.0"
},
"license": "MIT",
"directories": {
"lib": "./lib"
}
}