forked from alex-ec2/s3-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 960 Bytes
/
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
{
"name": "s3-server",
"version": "0.3.1",
"description": "Serve the contents of a S3 bucket (private or public) over HTTP",
"keywords": [
"aws",
"s3",
"bucket",
"server"
],
"main": "./bin/server.js",
"devDependencies": {},
"author": {
"name": "Ozan Turgut",
"email": "[email protected]",
"url": "http://ozan.io"
},
"bin": {
"s3-server": "./bin/server.js"
},
"scripts": {
"test": "exit 0"
},
"licenses": [
{
"type": "Apache License 2.0",
"url": "https://github.com/signalfx/s3-server/blob/master/LICENSE-APACHE2"
}
],
"repository": {
"type": "git",
"url": "git://github.com/signalfx/s3-server.git"
},
"bugs": {
"url": "https://github.com/signalfx/s3-server/issues"
},
"homepage": "https://github.com/signalfx/s3-server",
"dependencies": {
"express": "^4.10.2",
"minimist": "^1.1.0",
"aws-sdk": "^2.0.31",
"mustache": "^0.8.2"
}
}