-
-
Notifications
You must be signed in to change notification settings - Fork 301
/
Copy pathpackage.json
51 lines (51 loc) · 1.14 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
{
"name": "@gitbeaker/cli",
"version": "40.1.2",
"description": "CLI implementation of the GitLab API.",
"license": "MIT",
"engines": {
"node": ">=18.20.0"
},
"repository": {
"type": "git",
"url": "https://github.com/jdalrymple/gitbeaker"
},
"bugs": {
"url": "https://github.com/jdalrymple/gitbeaker/issues"
},
"homepage": "https://github.com/jdalrymple/gitbeaker#readme",
"author": {
"name": "Justin Dalrymple"
},
"keywords": [
"gitlab",
"api",
"cli",
"gitbeaker"
],
"bin": {
"gb": "dist/index.mjs",
"gitbeaker": "dist/index.mjs"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --format esm --treeshake --target esnext",
"test:unit": "jest --maxWorkers=50% test/unit",
"test:e2e": "jest --maxWorkers=50% test/e2e",
"lint": "eslint '**/{src,test,scripts}/**/*.ts'",
"lint:fix": "yarn lint --fix"
},
"dependencies": {
"@gitbeaker/core": "^40.1.2",
"@gitbeaker/rest": "^40.1.2",
"chalk": "4.1.2",
"sywac": "^1.3.0",
"xcase": "^2.0.1"
},
"devDependencies": {
"tsup": "^8.1.0",
"typescript": "^5.5.3"
}
}