-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·56 lines (56 loc) · 1.38 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "taskflow",
"version": "1.0.0",
"type": "module",
"description": "A CLI tool for managing JIRA issues and Git branches",
"main": "./dist/index.js",
"bin": {
"taskflow": "./dist/index.js",
"tf": "./dist/index.js"
},
"scripts": {
"build": "tsc --outDir dist",
"dev": "ts-node --esm src/index.ts",
"format": "prettier --write \"src/**/*.{js,ts}\"",
"link": "pnpm run build && npm link",
"lint": "eslint",
"lint:fix": "eslint . --ext .js,.ts --fix",
"prepare": "pnpm run build",
"prepack": "pnpm run build",
"start": "node dist/index.js",
"test": "jest",
"type-check": "tsc --noEmit"
},
"keywords": [
"jira",
"git",
"cli",
"project management",
"taskflow"
],
"author": "Jonathan Briggs",
"license": "MIT",
"dependencies": {
"axios": "^1.7.2",
"commander": "^12.1.0",
"conf": "^13.0.1",
"dotenv": "^16.4.5",
"enquirer": "^2.4.1",
"jira-client": "^8.2.2",
"simple-git": "^3.25.0"
},
"devDependencies": {
"@eslint/js": "^9.7.0",
"@types/jira-client": "^7.1.9",
"@types/node": "^20.14.11",
"eslint": "^9.7.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.8.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.3",
"typescript-eslint": "^7.16.1"
}
}