forked from ysugimoto/aws-lambda-image
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.59 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "aws-lambda-image",
"version": "0.14.3",
"description": "An AWS Lambda Function to resize/reduce images automatically",
"config": {
"profile": "default",
"region": "eu-west-1",
"memory": "1280",
"timeout": "5"
},
"scripts": {
"postinstall": "[ -f config.json ] || cp config.json.sample config.json",
"deploy": "claudia create --profile $npm_package_config_profile --region $npm_package_config_region --version dev --handler index.handler --no-optional-dependencies --timeout $npm_package_config_timeout --memory $npm_package_config_memory --policies policies/*.json",
"add-handler": "npm run add-s3-handler",
"add-s3-handler": "claudia add-s3-event-source --profile $npm_package_config_profile --bucket $npm_config_s3_bucket --events s3:ObjectCreated:* --prefix $npm_config_s3_prefix --suffix $npm_config_s3_suffix",
"add-sns-handler": "claudia add-sns-event-source --profile $npm_package_config_profile --topic $npm_config_sns_topic",
"release": "claudia set-version --profile $npm_package_config_profile --version production",
"update": "claudia update --profile $npm_package_config_profile --no-optional-dependencies",
"test": "nyc ava",
"test-config": "./bin/configtest",
"test-lambda": "claudia test-lambda --profile $npm_package_config_profile --event $npm_config_event_file",
"pretest": "npm run lint",
"lint": "eslint .",
"destroy": "AWS_PROFILE=$npm_package_config_profile claudia destroy --profile $npm_package_config_profile"
},
"keywords": [
"aws",
"lambda",
"image"
],
"author": {
"name": "Yoshiaki Sugimoto",
"email": "[email protected]",
"web": "https://github.com/ysugimoto"
},
"contributors": [
{
"name": "Shogo Sensui",
"email": "[email protected]",
"web": "https://github.com/1000ch"
},
{
"name": "Kamil Dybicz",
"email": "[email protected]",
"web": "https://github.com/kdybicz"
}
],
"license": "MIT",
"dependencies": {
"aws-sdk": "^2.24.0",
"gm": "^1.23.0",
"image-type": "^3.0.0",
"path-template": "0.0.0"
},
"devDependencies": {
"ava": "^0.18.2",
"aws-sdk-mock": "^1.6.1",
"babel-eslint": "^7.2.1",
"bind-all": "^1.0.0",
"claudia": "^2.9.0",
"coveralls": "^2.12.0",
"eslint": "^3.18.0",
"nyc": "^10.1.2",
"pify": "^2.3.0",
"sinon": "^1.17.7"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git://github.com/ysugimoto/aws-lambda-image.git"
},
"bugs": {
"url": "https://github.com/ysugimoto/aws-lambda-image/issues"
}
}