forked from evanchiu/serverless-galleria
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.11 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
{
"name": "sepia",
"version": "1.1.0",
"description": "Sepia transformation for Serverless Galleria",
"main": "src/index.js",
"scripts": {
"build": "node_modules/gulp/bin/gulp.js",
"package": "aws cloudformation package --template-file template.yml --output-template-file packaged-template.yml --s3-bucket $CODE_BUCKET",
"deploy": "aws cloudformation deploy --template-file packaged-template.yml --capabilities CAPABILITY_IAM --stack-name dev-sepia-$USER --parameter-overrides sourceBucket=$SOURCE_BUCKET destBucket=$DEST_BUCKET"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evanchiu/serverless-galleria.git"
},
"keywords": [
"Serverless",
"ImageMagick",
"Sepia"
],
"author": "Evan Chiu <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/evanchiu/serverless-galleria/issues"
},
"homepage": "https://github.com/evanchiu/serverless-galleria#readme",
"dependencies": {
"jimp": "^0.9.3"
},
"devDependencies": {
"gulp": "^4.0.2",
"gulp-jshint": "^2.1.0",
"gulp-zip": "^4.1.0",
"jshint": "^2.10.3"
}
}