-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 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
36
37
38
39
40
41
42
43
{
"name": "lillybot",
"version": "1.0.0",
"description": "Yet another bot to post PR updates",
"main": "index.js",
"scripts": {
"dev": "bash env.sh",
"slack": "./ngrok http 20020",
"cron": "bash cron.sh",
"start": "NODE_ENV=production node index.js",
"test": "mocha --exit tests/**/**.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thiagoricieri/lillybot.git"
},
"keywords": [
"pr",
"github",
"bot",
"chatbot"
],
"author": "Thiago Ricieri",
"license": "MIT",
"bugs": {
"url": "https://github.com/thiagoricieri/lillybot/issues"
},
"homepage": "https://github.com/thiagoricieri/lillybot#readme",
"dependencies": {
"@aoberoi/passport-slack": "^1.0.5",
"@octokit/rest": "^15.4.1",
"@slack/client": "^4.2.2",
"body-parser": "^1.18.2",
"cookie-parser": "^1.4.3",
"dateformat": "^3.0.3",
"express": "^4.16.2",
"passport": "^0.4.0",
"request": "^2.85.0"
},
"devDependencies": {
"nodemon": "^1.17.1"
}
}