-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 977 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.4.9",
"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 install"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"actions-toolkit": "github:nearform/actions-toolkit",
"minimatch": "^8.0.2",
"encoding": "^0.1.13"
},
"devDependencies": {
"@babel/preset-env": "^7.21.4",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"prettier": "^2.8.7"
}
}