-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
42 lines (42 loc) · 879 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": "restify-session",
"version": "1.1.1",
"description": "Session manager for REST server without cookies",
"private": false,
"preferGlobal": false,
"main": "index.js",
"scripts": {
"test": "mocha --require should --reporter spec --recursive"
},
"dependencies": {
"object_utils": "*",
"redis": "^0.12.1",
"restify": "^4.0.0",
"secure-rnd": "*"
},
"analyze": false,
"devDependencies": {
"mocha": "1.x",
"supertest": "0.10.x",
"should": "3.x"
},
"repository": {
"type": "git",
"url": "https://github.com/mgesmundo/restify-session.git"
},
"bugs": {
"url": "https://github.com/mgesmundo/restify-session/issues"
},
"keywords": [
"session",
"rest",
"restify",
"redis",
"cookies"
],
"author": "Marcello Gesmundo",
"license": "MIT",
"engines": {
"node": ">=0.8"
}
}