-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.6 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
{
"name": "round-assign",
"version": "1.0.0",
"private": true,
"description": "A Probot app that adds reviewers to pull requests when pull requests are opened.",
"homepage": "https://github.com/mulesoft/auto-assign",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"build": "tsc",
"start": "probot run ./lib/index.js",
"dev": "nodemon --config nodemon.json src/probot-run.ts",
"dev:debug": "nodemon --config nodemon.json --inspect-brk src/probot-run.ts",
"test": "jest --coverage",
"test:watch": "jest --coverage --watch --notify --notifyMode=change",
"lint": "npx eslint . --ext .js,.jsx,.ts,.tsx",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@octokit/graphql-schema": "10.41.0",
"pg": "8.6.0",
"probot": "11.3.0"
},
"devDependencies": {
"@octokit/types": "6.16.0",
"@types/jest": "26.0.23",
"@types/node": "14.14.43",
"@types/pg": "7.14.11",
"@typescript-eslint/eslint-plugin": "4.24.0",
"@typescript-eslint/parser": "4.24.0",
"eslint": "7.27.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "3.4.0",
"jest": "26.6.3",
"nock": "13.0.11",
"nodemon": "2.0.7",
"prettier": "2.2.1",
"smee-client": "1.2.2",
"ts-jest": "26.5.5",
"ts-node": "9.1.1",
"typescript": "4.2.4"
},
"engines": {
"node": ">= 15.11.0",
"npm": ">= 7.6.0"
}
}