This repository has been archived by the owner on Aug 13, 2023. It is now read-only.
forked from valery-barysok/session-file-store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.87 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "session-file-store",
"version": "0.0.18",
"description": "Session file store is a provision for storing session data in the session file",
"main": "index.js",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/valery-barysok/session-file-store"
},
"files": [
"lib/",
"LICENSE",
"README.md",
"index.js"
],
"keywords": [
"session",
"file",
"store",
"express",
"connect"
],
"author": {
"name": "Valery Barysok <[email protected]>"
},
"contributors": [
{
"name": "Igor Svehla (wespen)"
},
{
"name": "Bill Christo (bchr02)"
},
{
"name": "Ryan Murphy (r-murphy)"
},
{
"name": "Norberth Danson (ndanson)"
},
{
"name": "Arnaud Bétrémieux (arnoo)"
},
{
"name": "Guson (gusonyang)"
}
],
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"bugs": {
"url": "https://github.com/valery-barysok/session-file-store/issues"
},
"homepage": "https://github.com/valery-barysok/session-file-store",
"scripts": {
"test": "./node_modules/.bin/mocha --reporter spec --bail --check-leaks test/",
"test-ci": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/",
"test-cov": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/",
"test-tap": "./node_modules/.bin/mocha --reporter tap --check-leaks test/"
},
"engines": {
"node": ">= 0.10.0"
},
"dependencies": {
"bagpipe": "^0.3.5",
"fs-extra": "^0.23.0",
"retry": "^0.6.1"
},
"devDependencies": {
"chai": "^2.3.0",
"coveralls": "^2.11.3",
"istanbul": "^0.3.17",
"lodash.clone": "^3.0.2",
"mocha": "^2.2.5"
}
}