-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 971 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 971 Bytes
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.8.3",
"description": "GitHub action to check if pull requests have their corresponding issues.",
"author": {
"name": "NearForm",
"email": "oss@nearform.com"
},
"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": "^3.0.1",
"@actions/github": "^9.1.1",
"actions-toolkit": "github:nearform/actions-toolkit",
"minimatch": "^10.2.5",
"encoding": "^0.1.13"
},
"devDependencies": {
"@babel/preset-env": "^7.29.5",
"@vercel/ncc": "^0.38.4",
"eslint": "^8.57.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jest": "^29.15.2",
"eslint-plugin-prettier": "^5.5.5",
"husky": "^9.1.7",
"jest": "^30.4.0",
"prettier": "^3.8.3"
}
}