-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
53 lines (53 loc) · 1.33 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
46
47
48
49
50
51
52
53
{
"name": "auto-assign",
"description": "Automatically add reviewers/assignees to issues/PRs",
"version": "3.0.2",
"main": "dist/index.js",
"repository": "https://github.com/wow-actions/auto-assign",
"files": [
"dist",
"action.yml"
],
"scripts": {
"clean": "rimraf dist",
"lint": "eslint 'src/**/*.{js,ts}?(x)' --fix",
"build": "ncc build src/index.ts --minify --v8-cache",
"prebuild": "run-s lint clean",
"prepare": "is-ci || husky install .husky"
},
"lint-staged": {
"**/*.{js,jsx,tsx,ts,less,md,json}": [
"pretty-quick — staged"
],
"*.ts": [
"eslint --fix"
]
},
"license": "MIT",
"author": {
"name": "bubkoo",
"email": "[email protected]"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@wow-actions/parse-inputs": "^2.0.1",
"lodash.samplesize": "^4.2.0"
},
"devDependencies": {
"@bubkoo/commitlint-config": "^1.0.1",
"@bubkoo/eslint-config": "^1.3.0",
"@bubkoo/tsconfig": "^1.1.0",
"@types/lodash.samplesize": "^4.2.7",
"@types/node": "^18.11.18",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.33.0",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.3",
"pretty-quick": "^3.1.3",
"rimraf": "^4.1.2",
"typescript": "^4.9.4"
}
}