forked from ClearTax/jira-lint
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.39 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
{
"name": "jira-lint",
"version": "0.0.1",
"description": "Add JIRA issue details to your GitHub pull request",
"main": "lib/index.js",
"scripts": {
"prebuild": "engines-ok && del /S /Q lib",
"build": "ncc build src/main.ts -o lib --source-map",
"test": "jest",
"test:watch": "jest --watch",
"lint": "prettier --check src/**/*.ts && eslint src/**/*.ts",
"docs:toc": "markdown-toc -i --bullets='-' README.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cleartax/jira-lint"
},
"engines": {
"node": ">= 13",
"npm": ">= 6"
},
"keywords": [
"actions",
"node",
"setup",
"github",
"pr-description",
"labels",
"jira",
"jira-issue"
],
"author": "cleartax",
"license": "MIT",
"husky": {
"hooks": {
"pre-push": "./scripts/pre-push.sh",
"pre-commit": "lint-staged && ./scripts/pre-commit.sh"
}
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@octokit/rest": "^20.1.0",
"minimist": "^1.2.8",
"node-fetch": "^3.3.2",
"string-similarity": "^4.0.4"
},
"devDependencies": {
"@types/string-similarity": "^4.0.2",
"@vercel/ncc": "^0.36.1",
"axios": "^1.4.0",
"engines-ok": "^1.2.0",
"eslint": "^8.57.0",
"eslint-plugin-github": "^4.10.2",
"jest": "^29.7.0",
"ncc": "^0.3.6",
"typescript": "^5.4.5"
}
}