-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.25 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
{
"name": "@wellbin/s3-url-resolver",
"version": "0.1.10",
"description": "Get a signed URL for an s3 resource, either from redis or from s3.",
"keywords": [
"signed-url",
"signer",
"s3",
"redis",
"url"
],
"license": "MIT",
"homepage": "https://github.com/wellbin/s3-url-resolver",
"repository": {
"type": "git",
"url": "https://github.com/wellbin/s3-url-resolver"
},
"bugs": {
"url": "https://github.com/wellbin/s3-url-resolver/issues"
},
"author": {
"name": "Denise Fernandez",
"email": "[email protected]",
"url": "https://github.com/Antena"
},
"maintainers": [
"Denise Fernandez <[email protected]>",
"Gonzalo Bellver <[email protected]>"
],
"main": "src/index.js",
"devDependencies": {
"jscs": "^3.0.7",
"jscs-stylish": "^0.3.1",
"jshint": "^2.9.5",
"jshint-stylish": "^2.2.1",
"mocha": "^3.5.3",
"should": "^13.1.0"
},
"scripts": {
"lint": "jshint . --reporter=node_modules/jshint-stylish; jscs . --reporter=node_modules/jscs-stylish",
"test": "mocha -R spec"
},
"engines": {
"node": ">=0.10.0"
},
"dependencies": {
"async": "^2.6.0",
"aws-sdk": "2.x",
"md5": "^2.2.1",
"redis": "2.x",
"redis-status": "^1.0.3"
}
}