-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
50 lines (50 loc) · 981 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
45
46
47
48
49
50
{
"name": "rest-sessions",
"description": "A REST interface for redis-sessions",
"version": "2.0.1",
"license": "MIT",
"author": "P. Liess <smrchy+npm@gmail.com>",
"engines": {
"node": "> 10"
},
"scripts": {
"build": "coffee -bc *.coffee && coffee -bc ./test/test.coffee",
"test": "mocha ./test/test.js"
},
"bin": {
"rest-sessions": "./bin/rest-sessions.js"
},
"dependencies": {
"redis-sessions": "3.0.0",
"express": "4.17.1",
"lodash": "^4.17.20",
"morgan": "^1.10.0",
"body-parser": "^1.19.0"
},
"devDependencies": {
"async": "*",
"coffeescript": "^2.5.1",
"mocha": "*",
"should": "*"
},
"keywords": [
"rest",
"http",
"cookies",
"sessions",
"redis",
"session",
"users",
"activity",
"php",
"coldfusion",
"asp",
".net",
"python",
"ruby"
],
"repository": {
"type": "git",
"url": "http://github.com/smrchy/rest-sessions.git"
}
}