-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.14 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
{
"name": "row-bot",
"version": "0.5.0",
"description": "Slackbot that manages several role-bots based on a google spreadsheet all managed from a meta-google spreadsheet.",
"main": "index.js",
"engines": {
"node": ">=12",
"npm": ">=6.14.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MoveOnOrg/rowcal-bot.git"
},
"keywords": [
"tech-roles",
"slackbot"
],
"author": "Sky Duveen, Bodhi Alarcon, Sophie Waldman",
"license": "MIT",
"bugs": {
"url": "https://github.com/MoveOnOrg/rowcal-bot/issues"
},
"homepage": "https://github.com/MoveOnOrg/rowcal-bot#readme",
"dependencies": {
"@slack/web-api": "^6.1.0",
"aws-sdk": "^2.891.0",
"google-auth-library": "^6.0.6",
"googleapis": "^71.0.0"
},
"devDependencies": {
"claudia": "^5.12.0"
},
"scripts": {
"deploy": "claudia create --region us-west-1 --handler index.handler --deploy-proxy-api --timeout 900;",
"destroy": "claudia destroy",
"test": "claudia test-lambda --event test-event.json",
"update": "claudia update"
},
"files": [
"config.json",
"sheetbot.js",
"metasheet.js"
]
}