-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
27 lines (27 loc) · 863 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
{
"name": "action-auto-reviews-from-branches",
"version": "2.0.0",
"main": "index.js",
"repository": "https://github.com/golfzaptw/action-auto-reviews-from-branches.git",
"author": "Patawee Boonsongsri <psgolf16@gmail.com>",
"license": "MIT",
"scripts": {
"lint": "eslint . --fix",
"lint:check": "eslint . --color",
"prettier": "prettier --write '**/*.js'",
"prettier:check": "prettier --list-different '**/*.js'"
},
"devDependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.2.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"prettier": "^3.0.3"
}
}