-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 939 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
{
"name": "git-greetings",
"version": "1.0.0",
"private": true,
"description": "A Basic Github App for Greetings. It gives stats on every opened Issues and PRs. It also manages the labels of the repo",
"author": "dev-AshishRanjan",
"license": "ISC",
"homepage": "https://github.com/dev-AshishRanjan/git-greetings",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"dev": "nodemon -e js --exec \"npm run start\"",
"start": "probot run ./index.js",
"test": "jest",
"start-with-proxy": "HTTP_PROXY=http://172.16.199.20:8080 HTTPS_PROXY=http://172.16.199.20:8080 npm start"
},
"dependencies": {
"probot": "^12.3.3",
"probot-commands": "^1.1.0"
},
"devDependencies": {
"jest": "^29.0.0",
"nock": "^13.0.5",
"nodemon": "^3.0.2",
"smee-client": "^1.2.5"
},
"engines": {
"node": ">= 10.13.0"
},
"jest": {
"testEnvironment": "node"
}
}