generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
67 lines (67 loc) · 1.63 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
{
"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 && rm -rf lib",
"build": "ncc build src/main.ts -o lib -m",
"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.2.6",
"@actions/github": "^1.1.0",
"string-similarity": "^4.0.1"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/lodash": "^4.14.150",
"@types/node": "^13.13.0",
"@types/string-similarity": "^3.0.0",
"@typescript-eslint/parser": "^2.28.0",
"@zeit/ncc": "^0.22.1",
"axios": "^0.19.2",
"engines-ok": "^1.2.0",
"eslint-plugin-github": "^3.4.1",
"eslint-plugin-jest": "^23.8.2",
"eslint": "^6.8.0",
"husky": "^4.2.5",
"jest-circus": "^25.3.0",
"jest": "^25.3.0",
"lint-staged": "^10.1.5",
"lodash": "^4.17.19",
"markdown-toc": "^1.2.0",
"prettier": "^2.0.4",
"ts-jest": "^25.4.0",
"typescript": "^3.8.3"
}
}