-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 912 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 912 Bytes
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
{
"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"
}
}