package.json
1.79 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
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
79
80
81
82
83
{
"name": "session-file-store",
"version": "1.5.0",
"description": "Session file store is a provision for storing session data in the session file",
"keywords": [
"session",
"file",
"store",
"express",
"connect"
],
"main": "index.js",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/valery-barysok/session-file-store"
},
"bugs": {
"url": "https://github.com/valery-barysok/session-file-store/issues"
},
"homepage": "https://github.com/valery-barysok/session-file-store",
"files": [
"lib/",
"LICENSE",
"README.md",
"index.js"
],
"author": "Valery Barysok <valery.barysok@gmail.com>",
"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)"
},
{
"name": "Philipp Sporrer (PhilippSpo)"
},
{
"name": "Tyler Young (tyoung86)"
},
{
"name": "Mikko Kaistinen (Laastine)"
}
],
"scripts": {
"test": "mocha --reporter spec --bail --check-leaks test/",
"test-ci": "nyc mocha --reporter spec --check-leaks test/",
"test-tap": "mocha --reporter tap --check-leaks test/"
},
"license": "Apache-2.0",
"engines": {
"node": ">= 6"
},
"dependencies": {
"bagpipe": "^0.3.5",
"fs-extra": "^8.0.1",
"kruptein": "^2.0.4",
"object-assign": "^4.1.1",
"retry": "^0.12.0",
"write-file-atomic": "3.0.3"
},
"devDependencies": {
"cbor-sync": "^1.0.2",
"chai": "^4.2.0",
"coveralls": "^3.0.4",
"nyc": "^14.1.1",
"lodash.clone": "^4.3.1",
"mocha": "^6.1.4"
}
}