-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 827 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 827 Bytes
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
{
"name": "image-lambda",
"version": "1.0.0",
"description": "An AWS Lambda function that AWS S3 can invoke to create thumbnails or reduce file size for png and jpg images.",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "./node_modules/.bin/mocha test/*.test.js",
"build": "./build.sh",
"vagrant:build": "./vagrant_build.sh"
},
"author": "Chen Liang",
"license": "MIT",
"dependencies": {
"aws-sdk": "^2.3.9",
"gm": "^1.22.0",
"imagemin": "^5.1.1",
"imagemin-mozjpeg": "^6.0.0",
"imagemin-pngquant": "^5.0.0"
},
"devDependencies": {
"aws-sdk-mock": "^1.0.10",
"chai": "^3.5.0",
"mocha": "^2.4.5",
"mkdirp": "latest"
},
"repository": {
"type": "git",
"url": "git@github.com:slimfancy/image-lambda.git"
}
}