-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.99 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 1.99 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@pchuri/jira-cli",
"version": "2.3.2",
"description": "A modern, extensible command line interface for JIRA with Factory pattern and Commander.js",
"main": "bin/index.js",
"bin": {
"jira": "./bin/index.js"
},
"scripts": {
"start": "node bin/index.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepublishOnly": "npm test && npm run lint",
"prepack": "npm test && npm run lint",
"prepare": "husky install",
"release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pchuri/jira-cli.git"
},
"keywords": [
"jira",
"cli",
"atlassian",
"command-line",
"tool",
"factory-pattern",
"commander",
"modern-cli",
"issue-tracking",
"project-management"
],
"author": {
"name": "pchuri",
"email": "your.email@example.com",
"url": "https://github.com/pchuri"
},
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/pchuri/jira-cli/issues"
},
"homepage": "https://github.com/pchuri/jira-cli#readme",
"publishConfig": {
"access": "public"
},
"dependencies": {
"axios": "^1.12.2",
"commander": "^11.1.0",
"chalk": "^4.1.2",
"ora": "^5.4.1",
"conf": "^10.2.0",
"cli-table3": "^0.6.3"
},
"devDependencies": {
"jest": "^29.7.0",
"eslint": "^8.54.0",
"semantic-release": "21.1.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.6",
"@semantic-release/npm": "10.0.6",
"@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4",
"husky": "^8.0.3"
},
"overrides": {
"form-data": "4.0.4",
"tmp": "0.2.5",
"npm": "11.6.2",
"brace-expansion": "2.0.2",
"semver": "7.6.2",
"tar": "6.2.1",
"ip": "2.0.1",
"glob": "10.3.6"
},
"engines": {
"node": ">=14.0.0"
}
}