-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 793 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 793 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
{
"name": "lambda-webp-converter",
"version": "0.1.0",
"description": "A AWS Lambda function convert image uploaded on S3 to WebP format.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Taishi Ikai <m@ikai.tokyo>",
"license": "MIT",
"devDependencies": {
"babel": "^5.8.23",
"babel-core": "^5.8.25",
"gulp": "^3.9.0",
"gulp-babel": "^5.2.1",
"gulp-eslint": "^1.0.0",
"gulp-install": "^0.5.0",
"gulp-mocha": "^2.1.3",
"gulp-plumber": "^1.0.1",
"gulp-sourcemaps": "^1.6.0",
"gulp-zip": "^3.0.2",
"run-sequence": "^1.1.4"
},
"dependencies": {
"aws-sdk": "^2.2.5",
"core-js": "^1.2.0",
"cwebp": "^1.1.0",
"mime-types": "^2.1.7",
"path": "^0.12.7"
}
}