forked from rowi1de/auto-assign-review-teams
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 831 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
{
"name": "auto-assign-team-action",
"version": "0.0.2",
"private": true,
"description": "GitHub Action to Assign Review Teams",
"main": "lib/main.js",
"scripts": {
"build": "ncc build src/main.ts -o lib",
"test": "jest"
},
"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.2.6",
"@actions/github": "^1.1.0",
"@zeit/ncc": "^0.20.5"
},
"devDependencies": {
"@types/jest": "^24.0.13",
"@types/node": "^12.0.4",
"jest": "^24.8.0",
"jest-circus": "^24.7.1",
"nock": "^11.7.0",
"ts-jest": "^24.0.2",
"tslint": "^5.20.1",
"typescript": "^3.7.3"
}
}