UNPKG

toggl-jira-sync

Version:

CLI tool to sync Toggl Track time entries to Jira work logs

51 lines 1.07 kB
{ "name": "toggl-jira-sync", "version": "1.3.0", "description": "CLI tool to sync Toggl Track time entries to Jira work logs", "main": "src/index.js", "bin": { "toggl-jira-sync": "./src/index.js" }, "type": "module", "keywords": [ "toggl", "jira", "time-tracking", "cli" ], "author": "František Pác", "license": "ISC", "repository": { "type": "git", "url": "git+https://github.com/fandasson/toggl-jira-sync.git" }, "bugs": { "url": "https://github.com/fandasson/toggl-jira-sync/issues" }, "homepage": "https://github.com/fandasson/toggl-jira-sync#readme", "engines": { "node": ">=20.0.0" }, "files": [ "src/", "README.md", "LICENSE", ".env.example" ], "dependencies": { "axios": "^1.9.0", "chalk": "^5.4.1", "cli-table3": "^0.6.5", "commander": "^14.0.0", "dayjs": "^1.11.13", "dotenv": "^16.5.0", "inquirer": "^12.6.3" }, "devDependencies": { "vitest": "^3.1.4" }, "scripts": { "test": "vitest run", "test:watch": "vitest" } }