This repository has been archived by the owner on Oct 30, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 74
/
package.json
94 lines (94 loc) · 2.71 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
84
85
86
87
88
89
90
91
92
93
94
{
"name": "storjshare-daemon",
"version": "5.3.1",
"description": "daemon + process manager for sharing space on the storj network",
"main": "index.js",
"bin": {
"storjshare": "bin/storjshare.js",
"storjshare-start": "bin/storjshare-start.js",
"storjshare-stop": "bin/storjshare-stop.js",
"storjshare-restart": "bin/storjshare-restart.js",
"storjshare-status": "bin/storjshare-status.js",
"storjshare-logs": "bin/storjshare-logs.js",
"storjshare-save": "bin/storjshare-save.js",
"storjshare-load": "bin/storjshare-load.js",
"storjshare-killall": "bin/storjshare-killall.js",
"storjshare-destroy": "bin/storjshare-destroy.js",
"storjshare-daemon": "bin/storjshare-daemon.js",
"storjshare-create": "bin/storjshare-create.js"
},
"directories": {
"test": "test",
"lib": "lib"
},
"scripts": {
"test": "npm run testsuite && npm run linter",
"testsuite": "STORJ_ALLOW_LOOPBACK=1 ./node_modules/.bin/mocha test/** --recursive",
"coverage": "STORJ_ALLOW_LOOPBACK=1 ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --recursive",
"linter": "./node_modules/.bin/jshint --config .jshintrc ./index.js ./lib ./test ./bin"
},
"preferGlobal": true,
"repository": {
"type": "git",
"url": "git+https://github.com/storj/storjshare-daemon.git"
},
"keywords": [
"storj",
"farmer",
"storjshare",
"share"
],
"author": "Alexander Leitner <[email protected]>",
"contributors": [
{
"name": "Gordon Hall",
"email": "[email protected]"
},
{
"name": "littleskunk",
"url": "https://github.com/littleskunk"
},
{
"name": "Steve Ashman",
"url": "https://github.com/ssa3512"
}
],
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/storj/storjshare-daemon/issues"
},
"homepage": "https://github.com/storj/storjshare-daemon#readme",
"dependencies": {
"async": "^2.5.0",
"blindfold": "0.0.1",
"bytes": "^3.0.0",
"cli-table": "^0.3.1",
"colors": "^1.1.2",
"commander": "^2.11.0",
"daemon": "github:zipang/daemon.node#48d0977c26fb3a6a44ae99aae3471b9d5a761085",
"diskusage": "^0.2.4",
"dnode": "^1.2.2",
"du": "^0.1.0",
"editor": "^1.0.0",
"fslogger": "^2.0.2",
"kad-logger-json": "^0.1.2",
"mkdirp": "^0.5.1",
"moment": "^2.19.3",
"pretty-ms": "^3.0.1",
"rc": "^1.2.2",
"storj-lib": "^8.7.2",
"strip-json-comments": "^2.0.1",
"tail": "^1.2.3",
"touch": "3.1.0",
"web3-utils": "^1.0.0-beta"
},
"devDependencies": {
"chai": "^2.2.0",
"coveralls": "^2.11.2",
"istanbul": "^0.3.13",
"jshint": "2.8.0",
"mocha": "^2.2.4",
"proxyquire": "^1.7.3",
"sinon": "^1.14.1"
}
}