mirror of
https://github.com/jdalrymple/gitbeaker.git
synced 2026-01-18 15:55:30 +00:00
70 lines
2.0 KiB
JSON
70 lines
2.0 KiB
JSON
{
|
|
"name": "@gitbeaker/core",
|
|
"version": "39.16.0",
|
|
"description": "Core API implementation of the GitLab API",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=18.0.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": [
|
|
"gitbeaker",
|
|
"gitlab",
|
|
"api",
|
|
"core"
|
|
],
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
"./map.json": "./dist/map.json",
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.mjs",
|
|
"require": "./dist/index.js"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "yarn run build:map && yarn run build:self",
|
|
"build:map": "tsx scripts/generate.ts",
|
|
"build:self": "tsup src/index.ts --format esm,cjs --dts --treeshake",
|
|
"test:types": "tsc",
|
|
"test:e2e": "jest --maxWorkers=50% test/e2e",
|
|
"test:unit": "jest --maxWorkers=50% test/unit",
|
|
"format:docs": "prettier '**/(*.json|.yml|.js|.md)' --ignore-path ../../.prettierignore",
|
|
"format:docs:fix": "yarn format:docs --write",
|
|
"format:src": "prettier '{src,test}/**/*.ts' --ignore-path ../../.prettierignore",
|
|
"format:src:fix": "yarn format:src --write",
|
|
"format": "yarn format:src && yarn format:docs",
|
|
"format:fix": "yarn format:src:fix && yarn format:docs:fix",
|
|
"lint": "eslint '{src,test,scripts}/**/*.ts'",
|
|
"lint:fix": "yarn lint --fix",
|
|
"release:rc": "auto next",
|
|
"release:canary": "auto canary",
|
|
"release": "auto shipit"
|
|
},
|
|
"dependencies": {
|
|
"@gitbeaker/requester-utils": "^39.16.0",
|
|
"qs": "^6.11.2",
|
|
"xcase": "^2.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.4.0",
|
|
"get-param-names": "github:jdalrymple/get-param-names#1-improve-functionality",
|
|
"tsup": "^7.1.0",
|
|
"tsx": "^3.12.7",
|
|
"typescript": "^5.1.6"
|
|
}
|
|
}
|