-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
55 lines (55 loc) · 1.46 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
{
"name": "s3-proxy",
"version": "1.2.1",
"description": "Streaming http proxy Express middleware for fetching objects from S3",
"main": "index.js",
"scripts": {
"test": "mocha --reporter spec --bail --check-leaks test/",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"
},
"repository": {
"type": "git",
"url": "https://github.com/dvonlehman/s3-proxy"
},
"keywords": [
"express",
"middleware",
"aws",
"s3",
"proxy"
],
"files": [
"index.js",
"lib"
],
"author": "David Von Lehman (https://github.com/dvonlehman)",
"license": "Apache-2.0",
"homepage": "https://github.com/dvonlehman/s3-proxy",
"dependencies": {
"async": "^2.0.0-rc.3",
"aws-config": "^1.0.7",
"aws-sdk": "^2.3.3",
"base64-stream": "^0.1.3",
"debug": "^2.2.0",
"lodash.assign": "^4.0.9",
"lodash.isempty": "^4.2.1",
"lodash.map": "^4.4.0",
"lodash.pick": "^4.2.1",
"lodash.reject": "^4.4.0",
"lodash.trim": "^4.4.0",
"mime": "^1.3.4",
"simple-errors": "^1.0.1",
"url-join": "1.1.0"
},
"devDependencies": {
"cookie-parser": "^1.4.1",
"dash-assert": "^1.1.0",
"express": "^4.13.4",
"istanbul": "^0.4.3",
"mocha": "^2.4.5",
"shortid": "^2.2.6",
"sinon": "^1.17.3",
"supertest": "^1.2.0"
}
}