-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.51 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
{
"name": "cloudstash",
"version": "0.0.1",
"description": "End-user cloud file storage on configurable cloud storage back-end",
"homepage": "http://synchro.io/",
"contributors": [
{
"name": "Bob Dickinson",
"email": "bob@synchro.io"
}
],
"repository": {
"type": "git",
"url": "https://github.com/SynchroLabs/CloudStash"
},
"bugs": {
"url": "https://github.com/SynchroLabs/CloudStash/issues"
},
"license": "UNLICENSED",
"private": true,
"dependencies": {
"assert-plus": "^1.0.0",
"async": "^2.4.1",
"aws-sdk": "^2.103.0",
"azure-storage": "^2.4.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.15.2",
"bunyan": "^1.8.10",
"commander": "^2.3.0",
"express": "~4.14.0",
"fs-extra": "^1.0.0",
"handlebars": "^4.0.10",
"jsonwebtoken": "^7.4.1",
"lodash": "^4.17.4",
"log4js": "^0.6.21",
"manta": "^4.4.0",
"md5-file": "^3.1.1",
"mime-types": "^2.1.16",
"nconf": "^0.7.1",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"passport-saml": "^0.15.0",
"restify": "^4.3.0",
"restify-cors-middleware": "^1.0.1",
"restify-jwt": "^0.4.0",
"uuid": "^3.1.0"
},
"scripts": {
"start": "node app.js | ./node_modules/.bin/bunyan",
"test": "nyc --reporter=html --reporter=text mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"engines": {
"node": ">= 0.12"
},
"devDependencies": {
"mocha": "^3.4.2",
"nyc": "^11.1.0",
"supertest": "^3.0.0"
}
}