forked from storj-archived/bridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.04 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
{
"name": "storj-bridge",
"version": "0.9.3",
"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"
},
"scripts": {
"testsuite": "STORJ_ALLOW_LOOPBACK=1 NODE_ENV=test _mocha test/**",
"coverage": "STORJ_ALLOW_LOOPBACK=1 NODE_ENV=test ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --recursive",
"linter": "./node_modules/.bin/jshint --config .jshintrc ./index.js ./lib ./test",
"test": "npm run testsuite && npm run linter",
"develop": "STORJ_ALLOW_LOOPBACK=1 NODE_ENV=devel node script/develop.js",
"make-docs": "./node_modules/.bin/jsdoc index.js lib -r -R README.md -u ./doc -c .jsdoc.json --verbose -d ./jsdoc",
"publish-docs": "npm run make-docs && node script/publishdoc.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Storj/bridge.git"
},
"keywords": [
"storj",
"bridge"
],
"author": {
"name": "Gordon Hall",
"email": "[email protected]"
},
"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": "^1.1.4",
"istanbul": "^0.4.1",
"jsdoc": "^3.4.0",
"jshint": "2.8.0",
"memdown": "^1.1.2",
"mocha": "^2.3.4",
"noisegen": "^1.0.0",
"proxyquire": "^1.7.3",
"sinon": "^1.17.2"
},
"dependencies": {
"amqplib": "^0.4.2",
"async": "^1.5.2",
"basic-auth": "^1.0.3",
"concat-stream": "^1.5.1",
"cors": "^2.7.1",
"elliptic": "^6.0.2",
"express": "^4.13.3",
"handlebars": "^4.0.5",
"hat": "0.0.3",
"kad-logger-json": "^0.1.2",
"merge": "^1.2.0",
"mime-db": "^1.22.0",
"mongoose": "^4.3.4",
"mongoose-types": "^1.0.3",
"ms": "^0.7.1",
"nodemailer": "^2.0.0",
"readable-stream": "^2.0.5",
"storj": "^1.3.0",
"through": "^2.3.8"
}
}