-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
37 lines (37 loc) · 972 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": "github-action-check-linked-issues",
"version": "1.6.5",
"description": "GitHub action to check if pull requests have their corresponding issues.",
"author": {
"name": "NearForm",
"email": "[email protected]"
},
"license": "MIT",
"type": "module",
"main": "src/index.js",
"scripts": {
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"test": "jest",
"build": "ncc build src",
"prepare": "husky"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"actions-toolkit": "github:nearform/actions-toolkit",
"minimatch": "^10.0.1",
"encoding": "^0.1.13"
},
"devDependencies": {
"@babel/preset-env": "^7.26.8",
"@vercel/ncc": "^0.38.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-prettier": "^5.2.3",
"husky": "^9.1.7",
"jest": "^29.7.0",
"prettier": "^3.5.1"
}
}