-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 853 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
39
{
"name": "take-my-approval",
"version": "1.0.0",
"private": true,
"description": "Automatically add a GIF to your PR whenever it gets approved",
"author": "Malu Decks <[email protected]>",
"license": "ISC",
"homepage": "https://github.com/maludecks/take-my-approval",
"keywords": [
"probot",
"github",
"probot-app",
"gif",
"giphy",
"bot"
],
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"start": "probot run ./dist/src/index.js",
"test": "jest"
},
"dependencies": {
"axios": "^0.26.1",
"probot": "^11.0.1"
},
"devDependencies": {
"@types/jest": "^26.0.19",
"@types/node": "^14.14.19",
"jest": "^26.6.3",
"nock": "^13.0.5",
"smee-client": "^1.0.1",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"engines": {
"node": ">= 12.13.0"
}
}