-
-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
59 lines (59 loc) · 1.55 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
{
"name": "auto-assign",
"version": "1.0.0",
"description": "A Probot app that adds reviewers to pull requests when pull requests are opened.",
"author": "Kentaro Matsushita <[email protected]>",
"license": "ISC",
"repository": "https://github.com/kentaro-m/auto-assign.git",
"homepage": "https://github.com/kentaro-m/auto-assign",
"bugs": "https://github.com/kentaro-m/auto-assign/issues",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "nodemon",
"start": "npm run build && probot run ./lib/index.js",
"lint": "eslint src/**/*.ts",
"test": "jest",
"coverage": "jest --coverage",
"test:watch": "jest --watch --notify --notifyMode=change --coverage",
"prepare": "husky install"
},
"dependencies": {
"@octokit/webhooks": "7.24.3",
"@types/lodash": "4.14.196",
"@types/node": "14.18.54",
"lodash": "4.17.21",
"probot": "11.4.1",
"typescript": "4.1.3"
},
"devDependencies": {
"@types/jest": "27.5.2",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"eslint": "7.32.0",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-prettier": "3.4.1",
"husky": "8.0.3",
"jest": "29.6.1",
"lint-staged": "13.2.3",
"nodemon": "2.0.22",
"prettier": "2.8.8",
"smee-client": "1.2.3",
"ts-jest": "29.1.1"
},
"engines": {
"node": "14.x"
},
"standard": {
"env": [
"jest"
]
},
"lint-staged": {
"*.ts": "eslint --cache --fix"
}
}