forked from osirisguitar/sessitoken
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.18 KB
/
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
51
52
{
"name": "sessitoken",
"version": "0.1.4",
"description": "Handles session or token based storing with sliding expiration",
"main": "index.js",
"scripts": {
"test": "gulp test"
},
"repository": {
"type": "git",
"url": "[email protected]:JohanObrink/sessitoken.git"
},
"keywords": [
"node",
"session",
"token",
"sliding",
"expiration"
],
"author": "Johan Öbrink <[email protected]>",
"contributors": [
{
"name": "Anders Norrback Bornholm",
"email": "[email protected]",
"url": "https://github.com/osirisguitar"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/JohanObrink/sessitoken/issues"
},
"homepage": "https://github.com/JohanObrink/sessitoken",
"devDependencies": {
"sinon-chai": "~2.5.0",
"chai": "~1.9.1",
"sinon": "~1.9.1",
"mocha": "~1.18.2",
"gulp-mocha": "~0.4.1",
"gulp": "~3.6.2",
"gulp-jshint": "~1.5.5",
"jshint-stylish": "~0.2.0",
"gulp-plumber": "~0.6.1",
"proxyquire": "~0.6.0",
"sinon-promise": "0.0.2"
},
"dependencies": {
"q": "~1.0.1",
"lodash": "~2.4.1",
"MD5": "~1.2.1",
"promised-mongo": "~0.11.1"
}
}