UNPKG

jira-worklog-tracker

Version:

A simple CLI tool that fetches worklog updates from Jira for the past week (Monday–Sunday), groups them by author and ticket, and prints a summary table with the total time spent per ticket.

41 lines (40 loc) 912 B
{ "name": "jira-worklog-tracker", "version": "1.0.7", "description": "A simple CLI tool that fetches worklog updates from Jira for the past week (Monday–Sunday), groups them by author and ticket, and prints a summary table with the total time spent per ticket.", "main": "src/index.ts", "type": "module", "files": [ "dist", "README.md" ], "keywords": [ "Jira", "worklog", "administration", "tracking", "business" ], "author": { "name": "Peter Polman", "email": "peter@peterpolman.nl" }, "license": "MIT", "bin": { "jira-worklog": "./dist/index.js" }, "scripts": { "build": "tsc", "start": "node dist/index.js" }, "dependencies": { "date-fns": "^4.1.0", "dotenv": "^16.4.7", "node-fetch": "^3.3.2", "parse-duration": "^2.1.4" }, "devDependencies": { "ts-node": "^10.9.2", "typescript": "^5.8.2" } }