forked from YouTransfer/YouTransfer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 2.82 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "youtransfer",
"version": "1.1.0",
"description": "YouTransfer, the self-hosted file transfer solution",
"author": "Collabsoft",
"contributors": [
{
"name": "Remie Bolte",
"email": "info@youtransfer.io"
}
],
"main": "app.js",
"scripts": {
"dist": "gulp clean && gulp dist",
"dev": "gulp clean && gulp watch",
"start": "gulp clean && gulp dist && node app.js",
"dockerized": "node ./bin/youtransfer dockerize && npm start",
"app": "node app.js",
"test": "gulp test"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "github.com/remie/YouTransfer.git"
},
"config": {
"ghooks": {
"pre-push": "npm test"
}
},
"dependencies": {
"archiver": "^2.1.0",
"async": "^2.5.0",
"aws-sdk": "^2.140.0",
"bunyan": "^1.8.12",
"bunyan-format": "^0.2.1",
"commander": "^2.11.0",
"compression": "^1.7.1",
"cookie-session": "^2.0.0-beta.3",
"crypto-js": "^3.1.9-1",
"date-utils": "^1.2.21",
"filesize": "^3.5.11",
"fs-extra": "^4.0.2",
"jquery": "^3.2.1",
"jquery-form": "^4.2.2",
"jwt-simple": "^0.5.1",
"karma": "^0.13.22",
"lodash": "^4.17.4",
"mime": "^2.0.3",
"nconf": "^0.8.5",
"node-cache": "^4.1.1",
"node-schedule": "^1.2.5",
"nodemailer": "^4.3.1",
"nodemailer-sendmail-transport": "^1.0.2",
"nodemailer-ses-transport": "^1.5.1",
"nodemailer-smtp-transport": "^2.7.4",
"nodemailer-wellknown": "^0.2.3",
"nunjucks": "^3.0.1",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"passport-remember-me": "0.0.1",
"restify": "^6.2.3",
"restify-cookies": "^0.2.2",
"url": "^0.11.0",
"uuid": "^3.1.0",
"validator": "^9.1.1"
},
"devDependencies": {
"bootstrap": "^3.3.7",
"browserify": "^14.5.0",
"chai": "^4.1.2",
"codeclimate-test-reporter": "^0.5.0",
"del": "^3.0.0",
"dropzone": "^5.2.0",
"ghooks": "^2.0.0",
"gulp": "^3.9.1",
"gulp-cssmin": "^0.2.0",
"gulp-filter": "^5.0.1",
"gulp-istanbul": "^1.1.2",
"gulp-karma": "0.0.5",
"gulp-less": "^3.3.2",
"gulp-mocha": "^4.3.1",
"gulp-uglify": "^3.0.0",
"gulp-util": "^3.0.8",
"gulp-webdriver": "^2.0.3",
"karma-browserify": "^5.1.1",
"karma-chai": "^0.1.0",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-spec-reporter": "0.0.31",
"mocha": "^4.0.1",
"phantomjs": "^2.1.7",
"proxyquireify": "^3.2.1",
"q": "^1.5.1",
"run-sequence": "^2.2.0",
"selenium-standalone": "^6.11.0",
"sinon": "^4.0.1",
"vinyl-buffer": "^1.0.0",
"vinyl-paths": "^2.1.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.9.0",
"wdio-mocha-framework": "^0.5.11",
"wdio-spec-reporter": "^0.1.2",
"webdriverio": "^4.1.1"
},
"bin": "./bin/youtransfer"
}