forked from YouTransfer/YouTransfer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.33 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
{
"name": "youtransfer",
"version": "1.0.1",
"description": "YouTransfer, the self-hosted file transfer solution",
"main": "app.js",
"engines": {
"node": ">0.12.x"
},
"dependencies": {
"archiver": "^0.15.1",
"aws-sdk": "^2.1.45",
"commander": "^2.8.1",
"compression": "^1.5.2",
"date-utils": "^1.2.17",
"filesize": "^3.1.3",
"fs-extra": "^0.23.1",
"karma": "^0.13.9",
"lodash": "^3.10.1",
"md5": "^2.0.0",
"mime": "^1.3.4",
"nconf": "^0.6.9",
"node-schedule": "^0.2.9",
"node-static": "^0.7.5",
"nodemailer": "^1.4.0",
"nodemailer-sendmail-transport": "^1.0.0",
"nodemailer-ses-transport": "^1.3.0",
"nodemailer-smtp-transport": "^1.0.3",
"nodemailer-wellknown": "^0.1.7",
"nunjucks": "^1.3.4",
"restify": "^2.8.2",
"restify-cookies": "^0.1.1",
"url": "^0.11.0",
"uuid": "^2.0.1",
"validator": "^4.0.6"
},
"scripts": {
"dist": "gulp clean && gulp dist",
"dev": "gulp clean && gulp watch",
"start": "gulp clean && gulp dist && node app.js",
"app": "node app.js",
"test": "gulp test"
},
"author": "Collabsoft",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "github.com/remie/YouTransfer.git"
},
"config": {
"ghooks": {
"pre-commit": "npm test"
}
},
"devDependencies": {
"bootstrap": "^3.3.5",
"browserify": "^11.0.1",
"chai": "^3.2.0",
"codeclimate-test-reporter": "^0.1.1",
"del": "^1.2.0",
"dropzone": "^4.0.1",
"ghooks": "^0.3.2",
"gulp": "^3.9.0",
"gulp-cssmin": "^0.1.7",
"gulp-filter": "^3.0.0",
"gulp-istanbul": "^0.10.0",
"gulp-karma": "0.0.4",
"gulp-less": "^3.0.3",
"gulp-mocha": "^2.1.3",
"gulp-uglify": "^1.2.0",
"gulp-util": "^3.0.6",
"gulp-webdriver": "^1.0.1",
"jquery": "^2.1.4",
"jquery-form": "^3.50.0",
"karma-browserify": "^4.3.0",
"karma-chai": "^0.1.0",
"karma-mocha": "^0.2.0",
"karma-phantomjs-launcher": "^0.2.1",
"karma-spec-reporter": "0.0.20",
"mocha": "^2.3.2",
"phantomjs": "^1.9.18",
"proxyquireify": "^3.0.0",
"q": "^1.4.1",
"run-sequence": "^1.1.4",
"selenium-standalone": "^4.6.3",
"sinon": "^1.16.1",
"vinyl-buffer": "^1.0.0",
"vinyl-paths": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
},
"bin": "./bin/youtransfer"
}