-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy pathpackage.json
57 lines (57 loc) · 1.41 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
{
"name": "skipper",
"version": "0.9.5",
"description": "Bodyparser for Express/Sails. Exposes simple API for streaming multiple files to disk, S3, etc. without buffering to a .tmp directory.",
"main": "lib/skipper.js",
"directories": {},
"scripts": {
"lint": "eslint . --max-warnings=0 --ignore-pattern 'test/' && echo '✔ Your code looks good.'",
"test": "npm run lint && npm run custom-tests",
"custom-tests": "mocha && node -e \"require('skipper-adapter-tests')({module: require('skipper-disk')});\""
},
"repository": {
"type": "git",
"url": "git://github.com/balderdashy/skipper.git"
},
"engines": {
"node": ">=0.10.0"
},
"keywords": [
"bodyparser",
"upload",
"sails",
"express",
"connect",
"streaming",
"file-upload",
"skipper"
],
"author": "Mike McNeil",
"contributors": [
{
"name": "Scott Gress"
}
],
"license": "MIT",
"dependencies": {
"@sailshq/lodash": "^3.10.3",
"async": "2.6.4",
"body-parser": "1.20.3",
"debug": "3.1.0",
"multiparty": "4.1.3",
"semver": "7.5.2",
"skipper-disk": "~0.5.6",
"string_decoder": "0.10.31",
"uuid": "7.0.0"
},
"devDependencies": {
"concat-stream": "1.5.2",
"eslint": "4.11.0",
"express": "4.13.4",
"fs-extra": "0.30.0",
"mocha": "3.0.2",
"request": "2.74.0",
"skipper-adapter-tests": "^2.0.0",
"temporary": "0.0.8"
}
}