-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
155 lines (155 loc) · 5.69 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
{
"name": "github-action-jira-issues-fixversion-manager",
"version": "1.0.0",
"description": "This action will find the issue keys in the GitHub event and return them as a comma separated list",
"main": "dist/index.js",
"sideEffects": false,
"displayName": "bitflight-devops/github-action-jira-issues-fixversion-manager",
"repository": {
"type": "git",
"url": "git@github.com:bitflight-devops/github-action-jira-issues-fixversion-manager.git"
},
"bugs": {
"url": "https://github.com/bitflight-devops/github-action-jira-issues-fixversion-manager/issues"
},
"keywords": ["actions", "github", "node12", "jira", "tickets"],
"author": "Jamie Nelson <jamie@bitflight.io>",
"license": "MIT",
"private": true,
"scripts": {
"test": "NODE_ENV=testing jest",
"test-ci": "NODE_ENV=testing jest --ci --reporters=default --reporters=jest-junit",
"clean": "rimraf dist",
"build": "yarn run clean;tsc;ncc build lib/index.js -o dist --source-map --license licenses.txt",
"format": "prettier --write . --config .prettierrc.cjs --ignore-unknown",
"lint": "eslint -c .eslintrc.cjs --color ./src/ ./__tests__/",
"prelint": "yarn run format && tsc --project tsconfig.json --noemit",
"lint:fix": "yarn lint --fix",
"lint:markdown": "markdownlint \"**/*.md\" --config=.markdownlint.json --ignore-path=.markdownlintignore",
"lint:markdown:fix": "yarn lint:markdown --fix",
"all": "yon run build && yon run format && yon run lint && yon run package && yon test",
"commit": "git-cz",
"pre-commit": "yarn run lint:fix && lint-staged && yon run build && git add dist && yarn run generate-docs",
"pre-push": "yarn format",
"preversion": "echo 'Running test';yon test",
"version": "echo 'Run versioning commands';yon generate-docs;echo \"::set-output name=tag::v${npm_package_version}\"",
"postversion": "echo 'Running post versioning commands';git push --tags -f && git push && echo \"Successfully released version $npm_package_version!\"",
"generate-docs": "github-action-readme-generator && prettier --write .ghadocs.json README.md && git add .ghadocs.json README.md",
"prepare": "husky install;git config --global rebase.autosquash true"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": ["@commitlint/config-conventional"],
"rules": {
"body-max-length": [0],
"body-max-line-length": [0],
"footer-max-length": [0],
"footer-max-line-length": [0],
"header-max-length": [0]
}
},
"engines": {
"node": ">=16.10.0"
},
"exports": {
".": {
"import": "./src/index.ts",
"require": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": ["src", "dist"],
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@octokit/graphql": "^5.0.4",
"@octokit/rest": "^19.0.5",
"ansi-colors": "^4.1.3",
"axios": "^1.1.3",
"graphql": "^15",
"jira.js": "^2.15.14",
"tslib": "^2.4.0",
"yaml": "^2.1.3"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/eslint-parser": "^7.19.1",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@commitlint/prompt": "^17.1.2",
"@octokit/graphql-schema": "^12.21.0",
"@swc/core": "^1.3.11",
"@tsconfig/node12": "^1.0.11",
"@tsconfig/node16": "^1.0.3",
"@types/jest": "^29.2.0",
"@types/js-yaml": "^4.0.5",
"@types/lodash": "^4.14.186",
"@types/node": "^18.11.7",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"@typescript-eslint/typescript-estree": "^5.41.0",
"@vercel/ncc": "^0.34.0",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^16.0.3",
"eslint": "^8.26.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-formatter-codeframe": "^7.32.1",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-actions": "^2.0.0",
"eslint-plugin-array-func": "^3.1.7",
"eslint-plugin-editorconfig": "^4.0.2",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.3",
"eslint-plugin-jest-async": "^1.0.3",
"eslint-plugin-json-schema-validator": "^4.0.2",
"eslint-plugin-lodash": "^7.4.0",
"eslint-plugin-lodash-fp": "^2.2.0-a1",
"eslint-plugin-no-use-extend-native": "^0.5.0",
"eslint-plugin-optimize-regex": "^1.2.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-sonarjs": "^0.16.0",
"eslint-plugin-sort-class-members": "^1.15.2",
"eslint-plugin-switch-case": "^1.1.2",
"eslint-plugin-unicorn": "^44.0.2",
"github-action-readme-generator": "1.2.7",
"husky": "^8.0.1",
"jest": "^29.2.2",
"jest-circus": "^29.2.2",
"jest-junit": "^14.0.1",
"js-yaml": "^4.1.0",
"jsonc-eslint-parser": "^2.1.0",
"lint-staged": "^13.0.3",
"markdownlint-cli": "^0.32.2",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.5",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"typescript-eslint-language-service": "^5.0.0",
"yaml-eslint-parser": "^1.1.0",
"yarn-or-npm": "^3.0.1"
},
"jest-junit": {
"suiteNameTemplate": "{filepath}",
"classNameTemplate": "{classname}",
"titleTemplate": "{title}"
},
"lint-staged": {
"{src,__tests__}/**/*.js": "eslint --cache --fix",
"*.ts": ["eslint --cache --fix"]
},
"optionalDependencies": {
"@swc/core-darwin-x64": "^1.3.11"
}
}