-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.33 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
{
"name": "@labset/atlassian-devbox",
"version": "3.1.0",
"description": "atlassian devbox",
"preferGlobal": true,
"bin": {
"bamboo": "dist/bin/bamboo.js",
"bitbucket": "dist/bin/bitbucket.js",
"confluence": "dist/bin/confluence.js",
"crowd": "dist/bin/crowd.js",
"jira": "dist/bin/jira.js"
},
"scripts": {
"build": "tsc",
"format:check": "prettier --check .",
"format": "prettier --check --write .",
"lint": "eslint src/ --ext .ts,.tsx,.js"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/viqueen/atlassian-devbox.git"
},
"keywords": [
"atlassian",
"devbox"
],
"author": "Hasnae R.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/viqueen/atlassian-devbox/issues"
},
"homepage": "https://github.com/viqueen/atlassian-devbox#readme",
"devDependencies": {
"@types/node": "^20.11.10",
"@types/xml2js": "^0.4.11",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"husky": "^9.0.6",
"prettier": "^3.2.4",
"typescript": "^5.3.3"
},
"dependencies": {
"axios": "^1.7.4",
"chalk": "^4.1.2",
"commander": "^12.0.0",
"fs-directory": "^1.0.0",
"xml2js": "^0.6.0"
}
}