forked from valery-barysok/session-file-store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.01 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
79
80
81
82
83
{
"name": "session-file-store",
"version": "1.2.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 <[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)"
},
{
"name": "Philipp Sporrer (PhilippSpo)"
},
{
"name": "Tyler Young (tyoung86)"
},
{
"name": "Mikko Kaistinen (Laastine)"
}
],
"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/"
},
"license": "Apache-2.0",
"engines": {
"node": ">= 4"
},
"dependencies": {
"bagpipe": "^0.3.5",
"fs-extra": "^4.0.0",
"object-assign": "^4.1.1",
"retry": "^0.10.0",
"write-file-atomic": "1.3.1"
},
"devDependencies": {
"cbor-sync": "^1.0.2",
"chai": "^4.1.0",
"coveralls": "^2.11.8",
"istanbul": "^0.4.2",
"lodash.clone": "^4.3.1",
"mocha": "^3.4.2"
}
}