-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 1.88 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
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "action-jira-linter",
"version": "1.0.1",
"description": "Add JIRA issue details to your GitHub pull request",
"main": "lib/index.js",
"scripts": {
"prepare": "husky install",
"prebuild": "engines-ok && rm -rf lib",
"build": "ncc build src/main.ts --out lib --minify --source-map",
"all": "npm run pretty && npm run build && npm run test",
"test": "jest",
"test:cov": "jest --coverage",
"test:watch": "jest --watch",
"lint": "prettier --check ./**/*.ts && eslint ./**/*.ts",
"pretty": "prettier --write ./**/*.ts && eslint --fix ./**/*.ts",
"docs:toc": "markdown-toc -i --bullets='-' README.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/btwrk/action-jira-linter"
},
"engines": {
"node": ">= 13",
"npm": ">= 6"
},
"keywords": [
"actions",
"node",
"setup",
"github",
"pr-description",
"labels",
"jira",
"jira-issue"
],
"author": "btwrk",
"license": "MIT",
"husky": {
"hooks": {
"pre-push": "./scripts/pre-push.sh",
"pre-commit": "lint-staged && ./scripts/pre-commit.sh"
}
},
"dependencies": {
"@actions/core": "^1.9.0",
"@actions/github": "^5.0.3",
"@octokit/rest": "^19.0.3",
"string-similarity": "^4.0.4"
},
"devDependencies": {
"@types/jest": "^28.1.8",
"@types/lodash": "^4.14.186",
"@types/node": "^18.11.2",
"@types/string-similarity": "^4.0.0",
"@typescript-eslint/parser": "^5.40.1",
"@zeit/ncc": "^0.22.3",
"axios": "^0.27.2",
"engines-ok": "^1.2.0",
"eslint": "^8.25.0",
"eslint-plugin-github": "^4.4.0",
"eslint-plugin-jest": "^27.1.3",
"husky": "^8.0.1",
"jest": "^28.1.3",
"jest-circus": "^29.2.1",
"lint-staged": "^13.0.3",
"lodash": "^4.17.21",
"markdown-toc": "^1.2.0",
"prettier": "^2.7.1",
"ts-jest": "^28.0.8",
"typescri": "^1.0.4"
}
}