-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 912 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": "unbug",
"version": "1.0.0",
"private": true,
"description": "{{{ description }}}",
"author": "{{{ author }}}",
"license": "ISC",
"homepage": "https://github.com/{{ owner }}/{{ repo }}",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"build": " tsc",
"start": "npm run build && probot run ./dist/index.js",
"test": "jest",
"testpr": "npm run build && probot receive -e pull_request -p test/fixtures/pull_request.synchronize.json ./lib/index.js"
},
"dependencies": {
"diff": "^5.1.0",
"openai": "^3.2.1",
"probot": "^12.2.4"
},
"devDependencies": {
"@types/diff": "^5.0.2",
"@types/jest": "^29.0.0",
"@types/node": "^18.15.11",
"jest": "^29.0.0",
"nock": "^13.0.5",
"smee-client": "^1.2.2",
"ts-jest": "^29.0.0",
"typescript": "^4.1.3"
},
"engines": {
"node": ">= 10.13.0"
}
}