-
-
Notifications
You must be signed in to change notification settings - Fork 91
/
Copy pathpackage.json
45 lines (45 loc) · 1.17 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
{
"name": "auto-assign-action",
"version": "2.0.0",
"description": "Add reviewers to pull requests when pull requests are opened.",
"repository": {
"type": "git",
"url": "git+https://github.com/kentaro-m/auto-assign-action.git"
},
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"test": "jest",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"prepare": "husky install"
},
"author": "Kentaro Matsushita",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.0",
"js-yaml": "^3.13.1",
"lodash": "^4.17.20"
},
"devDependencies": {
"@octokit/webhooks-types": "7.6.1",
"@types/jest": "29.4.0",
"@types/js-yaml": "3.12.1",
"@types/lodash": "4.14.141",
"@types/node": "20.11.13",
"@vercel/ncc": "0.38.3",
"husky": "8.0.3",
"jest": "29.7.0",
"jest-circus": "29.7.0",
"jest-mock": "29.7.0",
"lint-staged": "13.3.0",
"prettier": "3.4.2",
"ts-jest": "29.2.5",
"typescript": "5.7.3"
},
"lint-staged": {
"*.ts": "prettier --write"
}
}