-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.34 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
{
"name": "cloudstashweb",
"version": "0.0.1",
"description": "Node.js web-based UX for Dropbox or compatible file storage solutions",
"homepage": "http://synchro.io/",
"contributors": [
{
"name": "Bob Dickinson",
"email": "bob@synchro.io"
}
],
"repository": {
"type": "git",
"url": "https://github.com/SynchroLabs/CloudStashWeb"
},
"bugs": {
"url": "https://github.com/SynchroLabs/CloudStashWeb/issues"
},
"license": "UNLICENSED",
"private": true,
"dependencies": {
"assert-plus": "^1.0.0",
"async": "^2.4.1",
"bunyan": "^1.8.10",
"commander": "^2.3.0",
"cookie-parser": "^1.4.3",
"dropbox": "^2.5.7",
"express": "~4.14.0",
"express-handlebars": "^3.0.0",
"fs-extra": "^1.0.0",
"handlebars": "^4.0.10",
"lodash": "^4.17.4",
"nconf": "^0.7.1",
"request": "^2.81.0"
},
"scripts": {
"start": "node app.js",
"build": "cp overrides/get-base-url.js node_modules/dropbox/src",
"build-dropbox": "cp overrides/get-base-url.js node_modules/dropbox/src && npm explore dropbox -- npm run build && cp node_modules/dropbox/dist/Dropbox-sdk.min.js public",
"test": "nyc --reporter=html --reporter=text mocha"
},
"engines": {
"node": ">= 0.12"
},
"devDependencies": {
"mocha": "^3.4.2",
"nyc": "^11.1.0",
"supertest": "^3.0.0"
}
}