-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
50 lines (50 loc) · 1.13 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
{
"name": "data-storage",
"version": "0.0.15",
"description": "Data storage using redis, filesystem or localstorage (for client side).",
"main": "src/dataStorage.js",
"dependencies": {
"events": "^1.1.0",
"jsonfile": "^2.2.2",
"mkpath": "^1.0.0",
"path-extra": "~2.0.0",
"redis": "^2.1.0",
"util": "^0.10.3"
},
"devDependencies": {
"chai": "^3.0.0",
"istanbul": "^0.3.22",
"mocha": "^2.2.4"
},
"scripts": {
"test": "mocha",
"coverage": "istanbul cover _mocha -- -R spec",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Colored-Coins/datastorage.git"
},
"keywords": [
"redis",
"data",
"filesystem",
"localstorage"
],
"author": "bejavu <tal@colu.com>",
"contributors": [
{
"name": "bejavu",
"email": "tal@colu.com"
},
{
"name": "oleiba",
"email": "oded@colu.com"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Colored-Coins/datastorage/issues"
},
"homepage": "https://github.com/Colored-Coins/datastorage#readme"
}