-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.23 KB
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
45
{
"name": "securedissession",
"author" : {
"name": "Ciprian Danea",
"email" : "ciprian@danea.ro"
},
"contributors": [
"Ciprian Danea <ciprian@danea.ro>"
],
"files" : [
"./lib/", "index.js", "README.md", ".npmignore", "package.json"
],
"stable" : "NO",
"private": true,
"main" : "index.js",
"repository" :
{ "type" : "git"
, "url" : "http://github.com/isaacs/npm.git"
},
"description": "Simple secure redis enabled session storage library. Provides session prefixing, signing or encryption for storage on shared redis servers where others might have access to your users' data.",
"dependencies": {
"crypto": "*",
"hiredis": "*",
"mc" : "*",
"redis":"*",
"underscore":"*",
"connect": "*",
"uuid": "*",
"debug" : "*",
"microtime": "*"
},
"keywords": [
"redis", "connect", "express", "session", "signed", "encryption", "crypto", "secure"
],
"scripts": {
"test" : "node_modules/.bin/mocha ./test"
},
"devDependencies" : {
"chai" : "*",
"mocha": "*"
},
"license": "MIT",
"test" : "mocha ./test/",
"engine": "node >= 0.1"
}