-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
60 lines (60 loc) · 1.63 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
54
55
56
57
58
59
60
{
"name": "auto-assign-issue",
"version": "2.1.2",
"private": true,
"description": "GitHub action that auto-assigns issues to users",
"main": "src/index.js",
"scripts": {
"lint": "eslint src/**",
"prettier": "prettier --write \"**/*.{html,js,json,md,yaml,yml}\"",
"prettier:verify": "prettier --check \"**/*.{html,js,json,md,yaml,yml}\"",
"test": "jest",
"test:coverage": "jest --coverage",
"prepare": "husky || true",
"precommit": "lint-staged"
},
"lint-staged": {
"!node_modules/**/*.{html,js,json,md,yaml,yml}": [
"prettier --write"
],
"./src/**/*.js": [
"eslint",
"jest --bail --findRelatedTests --passWithNoTests"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/pozil/auto-assign-issue.git"
},
"keywords": [
"github",
"action",
"issue",
"assign"
],
"author": "Philippe Ozil (pozil)",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/pozil/auto-assign-issue/issues"
},
"homepage": "https://github.com/pozil/auto-assign-issue#readme",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"eslint": "^9.17.0",
"eslint-plugin-jest": "^28.10.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2"
},
"engines": {
"node": ">=20"
},
"volta": {
"node": "20.13.1"
}
}