-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.15 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
{
"name": "cloudformation-scheduled-tasks",
"version": "0.0.17",
"description": "An AWS CloudFormation template for running scheduled tasks.",
"main": "index.js",
"repository": "https://github.com/sammarks/cloudformation-scheduled-tasks",
"author": "Sam Marks <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"lint": "eslint src/*.js test/*.js",
"test": "jest --coverage",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"release": "standard-version",
"deploy": "./deploy-to-s3.sh"
},
"devDependencies": {
"coveralls": "^3.1.0",
"eslint": "^7.5.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.18.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.1.0",
"jest-junit": "^11.0.1",
"lolex": "^6.0.0",
"standard-version": "^8.0.2"
},
"resolutions": {
"lodash": "4.17.19"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.478.0",
"@aws-sdk/client-sns": "^3.481.0",
"@aws-sdk/lib-dynamodb": "^3.478.0"
}
}