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 23
/
Copy pathpackage.json
68 lines (68 loc) · 2.2 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
{
"name": "storj-complex",
"version": "7.6.2",
"description": "manage many storj renter nodes with remote control capabilities",
"main": "index.js",
"bin": {
"storj-complex": "bin/storj-complex.js"
},
"scripts": {
"linter": "./node_modules/.bin/jshint --config .jshintrc ./index.js ./lib ./test",
"testsuite": "STORJ_ALLOW_LOOPBACK=1 NODE_ENV=test _mocha test/**/*.js",
"coverage": "STORJ_ALLOW_LOOPBACK=1 NODE_ENV=test ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --recursive",
"test": "npm run testsuite && npm run linter",
"make-docs": "./node_modules/.bin/jsdoc index.js lib -r -R README.md -u ./doc -c .jsdoc.json --verbose -d ./jsdoc",
"publish-docs": "gh-pages -d jsdoc --repo [email protected]:Storj/complex.git",
"start-renter": "./dockerfiles/scripts/setup-renter.sh ./bin/storj-complex.js -c /etc/storj/renter.conf",
"start-landlord": "./dockerfiles/scripts/setup-landlord.sh ./bin/storj-complex.js -c /etc/storj/landlord.conf"
},
"repository": {
"type": "git",
"url": "git+https://github.com/storj/complex.git"
},
"keywords": [
"storj",
"renter",
"bridge"
],
"author": "Gordon Hall <[email protected]>",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/storj/complex/issues"
},
"homepage": "https://github.com/storj/complex#readme",
"dependencies": {
"commander": "^2.9.0",
"hdkey": "^0.7.1",
"kad-logger-json": "^0.1.2",
"merge": "^1.2.0",
"rabbit.js": "^0.4.4",
"readable-stream": "^2.1.5",
"request": "^2.75.0",
"restify": "^4.1.1",
"secp256k1": "^3.2.2",
"storj-lib": "^8.7.1",
"storj-mongodb-adapter": "^9.0.0",
"storj-service-storage-models": "^10.2.2",
"uuid": "^3.0.0"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.14",
"gh-pages": "^0.11.0",
"ink-docstrap": "boshevski/docstrap",
"istanbul": "^0.4.5",
"jsdoc": "^3.4.1",
"jshint": "^2.9.3",
"mocha": "^3.0.2",
"proxyquire": "^1.7.10",
"sinon": "^1.17.6"
},
"devopsBase": {
"npmLinkDeps": {
"storj-lib": "core",
"storj-mongodb-adapter": "mongodb-adapter",
"storj-service-storage-models": "service-storage-models"
}
}
}