forked from binoculars/aws-lambda-ffmpeg
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.12 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.12 KB
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
{
"name": "aws-lambda-ffmpeg",
"version": "2.0.0",
"private": true,
"description": "AWS Lambda function to resize video and generate a thumbnail",
"main": "index.js",
"scripts": {
"postinstall": "node scripts/postinstall.js",
"test": "echo 'run node test/{aws|msa|gcp}'"
},
"keywords": [
"aws",
"lambda",
"ffmpeg",
"gcp",
"gcf",
"cloud function",
"azure function"
],
"author": "Barrett Harber",
"license": "Unlicense",
"devDependencies": {
"aws-sdk": "2.4.2",
"azure-storage": "^0.10.0",
"babel": "^6.5.2",
"babel-cli": "^6.7.7",
"babel-preset-es2015": "^6.6.0",
"babel-preset-es2015-node4": "^2.1.0",
"babel-preset-es2015-node5": "^1.2.0",
"del": "^2.2.0",
"gcloud": "^0.37.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-chmod": "^1.3.0",
"gulp-install": "^0.6.0",
"gulp-json-editor": "^2.2.1",
"gulp-rename": "^1.2.2",
"gulp-shell": "^0.5.2",
"gulp-util": "^3.0.4",
"gulp-zip": "^3.0.2",
"run-sequence": "^1.0.2"
},
"dependencies": {},
"babel": {
"presets": [
"es2015-node4"
]
}
}