forked from sailshq/skipper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.29 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.29 KB
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
{
"name": "skipper",
"version": "0.5.6",
"description": "Bodyparser for Express/Sails. Exposes simple API for streaming multiple files to disk, S3, etc. without buffering to a .tmp directory.",
"main": "index.js",
"directories": {},
"scripts": {
"test": "mocha && node -e \"require('skipper-adapter-tests')({module: require('skipper-disk')});\""
},
"repository": {
"type": "git",
"url": "git://github.com/balderdashy/file-parser.git"
},
"engines": {
"node": ">=0.10.0"
},
"keywords": [
"bodyparser",
"upload",
"sails",
"express",
"connect",
"streaming",
"file-upload"
],
"author": "Mike McNeil",
"contributors": [
{
"name": "Scott Gress"
}
],
"license": "MIT",
"dependencies": {
"multiparty": "~3.2.2",
"async": "~1.4.2",
"dot-access": "1.0.0",
"string_decoder": "~0.10.25-1",
"lodash": "~2.4.1",
"colors": "~1.1.2",
"semver": "~5.0.1",
"connect": "~2.25.0",
"skipper-disk": "~0.5.0",
"node-uuid": "~1.4.1",
"debug": "^2.1.1"
},
"devDependencies": {
"fs-extra": "~0.23.1",
"temporary": "0.0.8",
"request": "~2.61.0",
"concat-stream": "~1.5.0",
"sails": "~0.11.0",
"mocha": "~2.2.5",
"express": "~4.13.3",
"skipper-adapter-tests": "~1.5.0"
}
}