-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.18 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
{
"name": "tournie",
"version": "0.0.1",
"description": "Tournie Challonge bot for Slack",
"engines": {
"node": ">=8.10"
},
"main": "index.js",
"scripts": {
"setup": "claudia create --profile claudia --region eu-west-1 --configure-slack-slash-app --api-module index --policies policies --timeout 6 --allow-recursion",
"update": "claudia update --profile claudia --cache-api-config",
"eslint": "eslint .",
"jest": "jest",
"test": "npm run eslint && npm run jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sebgrohn/tournie.git"
},
"author": "Sebastian Gröhn, Ben Bryant",
"license": "MIT",
"bugs": {
"url": "https://github.com/sebgrohn/tournie/issues"
},
"homepage": "https://github.com/sebgrohn/tournie",
"dependencies": {
"aws-sdk": "^2.373.0",
"axios": "^0.18.1",
"claudia-bot-builder": "^4.5.0",
"ramda": "^0.26.1",
"slackify-html": "^1.0.1"
},
"devDependencies": {
"claudia": "^5.2.0",
"eslint": "^5.12.1",
"eslint-plugin-jest": "^22.0.1",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-ramda": "^2.5.1",
"jest": "^23.6.0"
}
}