-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
81 lines (81 loc) · 1.98 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
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
{
"name": "@leanix/reporting-cli",
"version": "1.0.0-beta.22",
"description": "Command line interface to develop custom reports for LeanIX EAM",
"preferGlobal": true,
"main": "./lib/app.js",
"bin": {
"lxr": "bin/lxr"
},
"scripts": {
"build": "tsup src/app.ts -d lib --format cjs",
"lint": "eslint src",
"test": "jest",
"test-install": "npm run build && npm -g install .",
"prepare": "npm run build",
"prepublishOnly": "npm run lint && npm test"
},
"keywords": [
"leanix",
"pathfinder",
"eam",
"custom-report",
"reporting",
"reporting-cli"
],
"author": "LeanIX GmbH <support@leanix.net>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/leanix/leanix-reporting-cli.git"
},
"devDependencies": {
"@leanix/import-sort-style": "1.0.6",
"@types/ejs": "3.1.5",
"@types/inquirer": "7.3.3",
"@types/jest": "29.5.13",
"@types/lodash": "4.17.9",
"@types/mkdirp": "2.0.0",
"@types/node": "20.16.10",
"@types/request-promise-native": "1.0.21",
"@types/rimraf": "3.0.2",
"@types/tar": "6.1.13",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"eslint": "7.32.0",
"husky": "4.3.8",
"jest": "29.7.0",
"prettier": "2.8.8",
"prettier-plugin-import-sort": "0.0.7",
"pretty-quick": "3.3.1",
"ts-jest": "29.2.5",
"tsup": "^8.3.0",
"typescript": "4.9.5"
},
"dependencies": {
"axios": "1.7.7",
"chalk": "4.1.2",
"commander": "12.1.0",
"cross-spawn": "5.1.0",
"ejs": "3.1.10",
"form-data": "4.0.0",
"inquirer": "7.3.3",
"jwt-decode": "2.2.0",
"lodash": "4.17.21",
"mkdirp": "3.0.1",
"opn": "5.5.0",
"rimraf": "6.0.1",
"tar": "6.2.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"importSort": {
".js, .ts": {
"style": "@leanix/import-sort-style",
"parser": "typescript"
}
}
}