-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 1.02 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
{
"name": "cloudformation-video-thumbnail",
"version": "0.0.4",
"description": "Generates a thumbnail for videos uploaded to a S3 bucket.",
"main": "index.js",
"repository": "https://github.com/sammarks/cloudformation-video-thumbnail",
"author": "Sam Marks <[email protected]>",
"license": "MIT",
"scripts": {
"lint": "eslint src/*.js",
"test": "jest --coverage",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"release": "standard-version",
"deploy": "./deploy-to-s3.sh"
},
"devDependencies": {
"aws-sdk": "^2.592.0",
"aws-sdk-mock": "^4.5.0",
"coveralls": "^3.0.9",
"eslint": "^6.7.2",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jest": "^23.1.1",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^24.9.0",
"jest-junit": "^10.0.0",
"standard-version": "^7.0.1"
},
"dependencies": {
"debug": "^4.1.1",
"uuid": "^3.3.3"
}
}