-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.29 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
45
{
"name": "probot-rfc-labeler",
"version": "1.0.0",
"description": "A GitHub App built with Probot that labels RFC Pull Requests after a period of inactivity for lazy consensus.",
"author": "Mikael Brevik <@mikaelbr>",
"license": "ISC",
"homepage": "https://github.com/AtB-AS/probot-rfc-labeler",
"bugs": "https://github.com/AtB-AS/probot-rfc-labeler/issues",
"keywords": [
"probot",
"github",
"probot-app",
"rfc",
"lazy consensus",
"labeler"
],
"repository": "https://github.com/AtB-AS/probot-rfc-labeler",
"scripts": {
"now-build": "mkdir -p public && echo 'Hello World' > public/index.html",
"build": "tsc",
"build:watch": "tsc && (tsc -w --preserveWatchOutput & nodemon)",
"start": "probot run ./lib/index.js",
"dryrun": "DRY_RUN=true probot run ./lib/index.js"
},
"dependencies": {
"@hapi/joi": "^17.1.0",
"@now/node": "^1.4.1",
"@octokit/rest": "^17.0.0",
"@octokit/webhooks": "^7.1.0",
"probot": "9.9.6",
"probot-scheduler": "^2.0.0-beta.1",
"probot-serverless-now": "^2.1.2"
},
"engines": {
"node": ">=12.0",
"npm": "^5.6"
},
"devDependencies": {
"@types/hapi__joi": "^16.0.12",
"@types/node": "^13.7.6",
"nodemon": "^2.0.2",
"smee-client": "^1.1.0",
"typescript": "^3.8.2"
}
}