-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 804 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 804 Bytes
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
{
"name": "gauge-bot",
"version": "1.0.0",
"description": "A Probot app",
"author": "BugDiver <vinaysh@thoughtworks.com>",
"license": "ISC",
"repository": "https://github.com/getgauge/gauge-bot.git",
"homepage": "https://github.com/getgauge/gauge-bot",
"bugs": "https://github.com/getgauge/gauge-bot/issues",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"dev": "nodemon --exec \"npm start\"",
"start": "probot run ./index.js",
"lint": "standard --fix"
},
"dependencies": {
"@probot/adapter-aws-lambda-serverless": "^3.0.1",
"probot": "^12.0.0",
"random-js": "^2.1.0"
},
"devDependencies": {
"nodemon": "^2.0.4",
"smee-client": "^1.0.2",
"standard": "^17.0.0"
},
"engines": {
"node": ">= 8.3.0"
}
}