-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.08 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
{
"name": "storj-express",
"version": "0.0.1",
"description": "express middleware that exposes a configurable storj endpoint on an express server",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/dylanlott/storj-express.git"
},
"keywords": [
"storj",
"express",
"middleware",
"encryption",
"backup",
"endpoint"
],
"author": "Dylan Lott <dylan@storj.io>",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/dylanlott/storj-express/issues"
},
"homepage": "https://github.com/dylanlott/storj-express#readme",
"dependencies": {
"assert": "^1.4.1",
"body-parser": "^1.18.2",
"busboy": "^0.2.14",
"connect-busboy": "0.0.2",
"fs-extra": "^4.0.2",
"multer": "^1.3.0",
"storj": "github:storj/node-libstorj",
"storj-service-error-types": "^1.2.0",
"storj-service-middleware": "^1.3.2"
},
"devDependencies": {
"dotenv": "^4.0.0",
"express": "^4.15.4",
"mocha": "^3.5.0",
"sinon": "^3.2.0",
"tape": "^4.8.0"
}
}