-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 904 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
37
38
{
"name": "auto-assign-team-action",
"version": "0.0.2",
"private": true,
"description": "GitHub Action to Assign Review Teams",
"main": "dist/main.js",
"scripts": {
"build": "ncc build src/main.ts -o dist",
"test": "jest",
"format": "prettier --write ./src/**/*.ts ./__tests__/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rowi1de/auto-assign-review-teams.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "Robert Wiesner",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@vercel/ncc": "^0.38.1"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.17",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"msw": "^2.2.0",
"prettier": "3.2.5",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
}
}