-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.07 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.07 KB
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
{
"name": "pr-review-labeler",
"version": "0.2.2",
"private": true,
"description": "Pull Request Review Labeler",
"main": "lib/index.js",
"scripts": {
"build": "tsc && ncc build lib/main.js",
"start": "node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jsryudev/pr-review-labeler.git"
},
"keywords": [],
"author": "jsryu.dev",
"license": "MIT",
"bugs": {
"url": "https://github.com/jsryudev/pr-review-labeler/issues"
},
"homepage": "https://github.com/jsryudev/pr-review-labeler#readme",
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/github": "^5.0.0"
},
"devDependencies": {
"@types/node": "^16.11.25",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"@vercel/ncc": "^0.33.3",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"prettier": "^2.5.1",
"typescript": "^3.9.9"
}
}