forked from sreeteja06/gh-app-labels-and-badges
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 903 Bytes
/
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
{
"name": "gh-app-labels-and-badges",
"version": "1.0.2",
"private": true,
"description": "Automatically add github labels and badges",
"author": "Sree Teja",
"license": "ISC",
"homepage": "https://github.com/sreeteja06/gh-app-labels-and-badges",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"build": "tsc",
"start": "yarn build && probot run ./lib/index.js",
"start:prod": "probot run ./lib/index.js",
"test": "jest",
"format": "prettier --write .",
"test:format": "prettier --check ."
},
"dependencies": {
"probot": "^12.2.4"
},
"devDependencies": {
"@types/jest": "^29.0.0",
"@types/node": "^18.0.0",
"jest": "^29.0.0",
"nock": "^13.0.5",
"prettier": "^3.3.2",
"smee-client": "^1.2.2",
"ts-jest": "^29.0.0",
"typescript": "^4.1.3"
},
"engines": {
"node": ">= 10.13.0"
}
}