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 42
/
Copy pathpackage.json
93 lines (93 loc) · 2.78 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
{
"name": "storj-bridge",
"version": "7.7.1",
"description": "Access the Storj network using a simple REST API.",
"main": "index.js",
"directories": {
"doc": "doc",
"test": "test"
},
"bin": {
"storj-bridge": "bin/storj-bridge.js",
"storj-monitor": "bin/storj-monitor.js",
"storj-renew": "bin/storj-contract-renew.js"
},
"scripts": {
"testsuite": "STORJ_ALLOW_LOOPBACK=1 NODE_ENV=test _mocha --recursive test/**",
"coverage": "STORJ_ALLOW_LOOPBACK=1 NODE_ENV=test ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --recursive",
"integration": "NODE_ENV=test _mocha --recursive test-integration/**",
"linter": "./node_modules/.bin/jshint --config .jshintrc ./index.js ./lib ./test",
"test": "npm run testsuite && npm run linter",
"dev": "NODE_ENV=development nodemon bin/storj-bridge.js",
"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 git@github.com:Storj/bridge.git",
"payout-report": "node script/payouts.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Storj/bridge.git"
},
"keywords": [
"storj",
"bridge"
],
"author": {
"name": "Gordon Hall",
"email": "gordon@storj.io"
},
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/Storj/bridge/issues"
},
"homepage": "https://github.com/Storj/bridge#readme",
"devDependencies": {
"chai": "^3.4.1",
"coveralls": "^2.11.6",
"ink-docstrap": "boshevski/docstrap",
"istanbul": "^0.4.1",
"jsdoc": "^3.4.0",
"jshint": "2.8.0",
"memdown": "^1.1.2",
"mocha": "^2.3.4",
"node-mocks-http": "^1.5.4",
"noisegen": "^1.0.0",
"proxyquire": "^1.7.10",
"redis-mock": "^0.16.0",
"rimraf": "^2.5.3",
"sinon": "^1.17.2"
},
"dependencies": {
"analytics-node": "^2.4.0",
"async": "^2.1.4",
"bn.js": "^4.11.8",
"commander": "^2.9.0",
"concat-stream": "^1.6.0",
"cors": "^2.7.1",
"csv-write-stream": "^2.0.0",
"elliptic": "^6.0.2",
"express": "^4.13.3",
"handlebars": "^4.0.5",
"hat": "0.0.3",
"helmet": "^3.9.0",
"kad-logger-json": "^0.1.2",
"knuth-shuffle": "^1.0.1",
"merge": "^1.2.0",
"mime-db": "^1.22.0",
"ms": "^0.7.1",
"nodemailer": "^2.0.0",
"rc": "^1.1.6",
"readable-stream": "^2.0.5",
"redis": "^2.7.1",
"scrypt": "^6.0.3",
"secp256k1": "^3.3.0",
"storj-analytics": "^1.0.0",
"storj-complex": "^7.5.0",
"storj-lib": "^8.7.1",
"storj-mongodb-adapter": "^9.0.0",
"storj-service-error-types": "^1.4.0",
"storj-service-mailer": "^1.4.0",
"storj-service-middleware": "^1.3.3",
"storj-service-storage-models": "^10.6.0",
"through": "^2.3.8"
}
}