gitea-jira/package.json

29 lines
656 B
JSON
Raw Normal View History

2024-01-10 12:57:19 -05:00
{
"name": "gitea-jira",
"version": "1.0.0",
"description": "Tool for basic mirroring issues, tasks, and commits between Gitea and Jira",
"main": "index.js",
"scripts": {
2024-01-11 02:00:08 -05:00
"server": "node ./src/index.js",
2024-01-10 12:57:19 -05:00
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://git.alanocull.com/triple-aaa-games/gitea-jira.git"
},
"keywords": [
"gitea",
"jira",
"project",
"management",
"agile"
],
"author": "Alan O'Cull, Triple AAA Games",
"license": "ISC",
"dependencies": {
2024-01-11 18:15:59 -05:00
"body-parser": "^1.20.2",
"express": "^4.18.2",
"lodash": "^4.17.21"
2024-01-10 12:57:19 -05:00
}
}