-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 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
{
"name": "@helloextend/confluent-cloud-api",
"version": "0.0.1",
"description": "A Simple Confluent Cloud API Tool for IAC",
"homepage": "https://github.com/extendoss/confluentcloudapi#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/extendoss/confluentcloudapi.git"
},
"license": "Apache-2.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "pnpm clean:dist && pnpm build:ts",
"build:docs": "typedoc --out docs --githubPages false --excludePrivate --excludeProtected --excludeExternals --logLevel Error --readme none src",
"build:ts": "tsc --project tsconfig.build.json",
"changelog": "pnpm auto-changelog",
"clean:dist": "rm -rf ./dist",
"lint": "eslint --cache --cache-location ./node_modules/.eslintcache --ext=.ts,.js ./src",
"prepare": "pnpm build",
"preversion": "pnpm build",
"test": "pnpm jest --coverage",
"typecheck": "NODE_OPTIONS=--max-old-space-size=15360 tsc --noEmit"
},
"lint-staged": {
"*.{ts,js}": [
"eslint --fix",
"pnpm jest --bail --findRelatedTests --passWithNoTests",
"bash -c 'yarn typecheck'"
]
},
"dependencies": {
"axios": "^1.6.7",
"axios-retry": "^4.0.0",
"dotenv": "^16.4.5"
},
"devDependencies": {
"@digitalroute/cz-conventional-changelog-for-jira": "8.0.1",
"@types/jest": "^29.5.3",
"@types/node": "^18.*",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"auto-changelog": "^2.4.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jsdoc": "46.4.6",
"eslint-plugin-prettier": "^5.0.0",
"jest": "29.6.2",
"lint-staged": "^15.2.2",
"prettier": "^3.0.1",
"ts-jest": "29.1.1",
"ts-node": "^10.9.1",
"typedoc": "^0.25.10",
"typedoc-plugin-markdown": "^3.15.4",
"typescript": "5.1.6"
},
"packageManager": "pnpm@8.6.12"
}