-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 930 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
{
"name": "multi-process-session",
"description": "manage multi process session",
"version": "0.7.0",
"author": {
"name": "massimo",
"email": "[email protected]"
},
"main": "bin/index.js",
"scripts": {
"prepublish": "coffee -co bin/ lib/*.coffee",
"postpublish": "rm -rf bin",
"test": "mocha test/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/yangsibai/multi-process-session.git"
},
"keywords": [
"session",
"multi",
"process",
"cluster",
"redis",
"mysql"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/yangsibai/multi-process-session/issues"
},
"dependencies": {
"node-uuid": "1.4.1",
"redis": "2.8.0",
"underscore": "~1.6.0"
},
"devDependencies": {
"cookie-parser": "^1.3.3",
"express": "^4.10.1",
"mocha": "^2.0.1",
"should": "^4.2.0",
"supertest": "^0.14.0"
}
}