-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.25 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
{
"name": "cloudformation-github-sheets-sync",
"version": "0.0.1",
"description": "An AWS CloudFormation template for automatically syncing Github issues to a Google Sheet.",
"main": "index.js",
"repository": "https://github.com/sammarks/cloudformation-github-sheets-sync",
"author": "Sam Marks <sam@sammarks.me>",
"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": {
"aws-sdk": "^2.522.0",
"aws-sdk-mock": "^4.5.0",
"coveralls": "^3.0.6",
"eslint": "^6.3.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.16.0",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^24.9.0",
"jest-junit": "^8.0.0",
"serverless": "^1.51.0",
"serverless-sam": "^0.2.0",
"standard-version": "^7.0.0"
},
"dependencies": {
"googleapis": "^42.0.0",
"graphql-request": "^1.8.2",
"lodash": "^4.17.15"
},
"resolutions": {
"mem": "4.0.0",
"lodash": "4.17.15"
}
}