forked from onXmaps/jirafy-sync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.03 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
{
"name": "jira-sync",
"version": "1.2",
"description": "Sync Jira tickets and version based on a given changelog",
"main": "dist/index.js",
"scripts": {
"build": "ncc build ./index.js",
"precommit": "npm run format && npm run build && git add dist/",
"format-check": "prettier --check **/*.{js,yml,json}",
"format": "prettier --write **/*.{js,yml,json}",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/onXmaps/jirafy-sync.git"
},
"keywords": [
"jira",
"version",
"fixVersion",
"changelog",
"sync"
],
"author": "inkitt",
"license": "MIT",
"bugs": {
"url": "https://github.com/onXmaps/jirafy-sync/issues"
},
"homepage": "https://github.com/onXmaps/jirafy-sync#readme",
"devDependencies": {
"@vercel/ncc": "0.33.0",
"chai": "^4.3.6",
"dotenv": "^16.0.0",
"mocha": "^9.2.2",
"prettier": "2.5.1"
},
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.0",
"jira-client": "^8.0.0"
}
}