-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 987 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
{
"name": "killara-memcached",
"version": "0.0.9",
"description": "a wrapper that be used with laravel-session as a session store",
"main": "index.js",
"scripts": {
"lint": "eslint index.js --fix",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/killara/killara-memcached.git"
},
"keywords": [
"session-store"
],
"author": "Runrioter <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/killara/killara-memcached/issues"
},
"homepage": "https://github.com/killara/killara-memcached#readme",
"dependencies": {
"debug": "^3.0.1",
"memcached": "^2.2.2",
"node_memcached": "^1.1.3"
},
"devDependencies": {
"eslint": "^4.5.0",
"eslint-config-egg": "^5.1.0",
"eslint-plugin-jest": "^20.0.3",
"jest": "^20.0.4"
},
"jest": {
"coverageReporters": [
"text-summary",
"lcov"
],
"bail": true,
"testEnvironment": "node"
}
}