-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
executable file
·56 lines (56 loc) · 1.54 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "lambda-video-thumbnailer",
"version": "2.0.1",
"description": "A Package that allows users to automatically create thumbnails when uploaded to s3.",
"homepage": "https://github.com/deek87/lamba-thumbnailer#readme",
"keywords": [
"lambda",
"aws",
"thumbnail",
"ffmpeg",
"thumbnails",
"video",
"serverless",
"video thumbnails",
"video thumbnailer",
"video thumbnail",
"TypeScript"
],
"repository": {
"type": "git",
"url": "https://github.com/deek87/lamba-thumbnailer.git"
},
"bugs": {
"url": "https://github.com/deek87/lamba-thumbnailer/issues"
},
"main": "lib/index.js",
"scripts": {
"test": "mocha",
"build": "eslint src/**/*.ts --fix && tsc",
"watch": "tsc --watch",
"lint": "eslint src/**/*.ts",
"package": "echo \"ToDo: add the packaging/zipping\" && exit 1"
},
"author": {
"name": "Derek \"Deek\" Cameron",
"email": "info@derekcameron.com",
"url": "https://derekcameron.com"
},
"license": "MIT",
"devDependencies": {
"@types/mocha": "^9.0.0",
"@types/node": "^14.14.37",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/experimental-utils": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"aws-sdk": "^2.1007.0",
"eslint": "^7.23.0",
"eslint-formatter-autolinkable-stylish": "^1.1.5",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^32.3.0",
"eslint-plugin-no-null": "^1.0.2",
"mocha": "^9.1.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}