-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 736 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 736 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": "aws-lambda-ffmpeg",
"version": "0.0.0",
"private": true,
"description": "AWS Lambda function to resize video and generate a thumbnail",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"aws",
"lambda",
"ffmpeg"
],
"author": "Barrett Harber",
"license": "Unlicense",
"devDependencies": {
"aws-sdk": "^2.1.24",
"del": "^1.1.1",
"gulp": "^3.8.11",
"gulp-flatten": "0.0.4",
"gulp-install": "^0.4.0",
"gulp-rename": "^1.2.2",
"gulp-shell": "^0.4.0",
"gulp-util": "^3.0.4",
"gulp-zip": "^3.0.2",
"run-sequence": "^1.0.2"
},
"dependencies": {
"async": "^0.9.0",
"uuid": "^2.0.1"
}
}