forked from dkhmelenko/autoapproval
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.52 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "autoapproval",
"version": "1.0.0",
"description": "The bot for approving pull requests automatically",
"author": "Dmytro Khmelenko <d.khmelenko@gmail.com> (dkhmelenko.github.io)",
"license": "ISC",
"repository": "https://github.com//autoapproval.git",
"homepage": "https://github.com//autoapproval",
"bugs": "https://github.com//autoapproval/issues",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "nodemon --exec \"npm start\"",
"start": "probot run ./dist/index.js",
"lint": "standard **/*.ts --fix",
"test": "jest --coverage && standard **/*.ts",
"test:watch": "jest --watch --notify --notifyMode=change --coverage"
},
"dependencies": {
"@octokit/rest": "^18.12.0",
"@types/nock": "^11.1.0",
"btoa": "^1.2.1",
"nock": "^13.2.4",
"octokit": "^1.7.1",
"probot": "^12.2.2",
"probot-config": "^1.1.0"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
"@typescript-eslint/parser": "^5.18.0",
"eslint-plugin-typescript": "^0.14.0",
"jest": "^27.5.1",
"nodemon": "^2.0.15",
"smee-client": "^1.2.2",
"standard": "^16.0.4",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
},
"engines": {
"node": ">= 8.3.0"
},
"standard": {
"parser": "@typescript-eslint/parser",
"env": [
"jest"
],
"plugins": [
"typescript"
],
"ignore": [
"/dist/*"
]
},
"heroku-run-build-script": true
}