mirror of
https://github.com/jdalrymple/gitbeaker.git
synced 2026-01-18 15:55:30 +00:00
67 lines
1.7 KiB
JSON
67 lines
1.7 KiB
JSON
{
|
|
"name": "@gitbeaker/rest",
|
|
"version": "43.8.0",
|
|
"description": "Cross Platform implementation of the GitLab API",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=18.20.0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/jdalrymple/gitbeaker",
|
|
"directory": "packages/rest"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/jdalrymple/gitbeaker/issues"
|
|
},
|
|
"homepage": "https://github.com/jdalrymple/gitbeaker#readme",
|
|
"author": {
|
|
"name": "Justin Dalrymple"
|
|
},
|
|
"keywords": [
|
|
"gitlab",
|
|
"api",
|
|
"rest",
|
|
"browser",
|
|
"gitbeaker"
|
|
],
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": {
|
|
"types": "./dist/index.d.mts",
|
|
"default": "./dist/index.mjs"
|
|
},
|
|
"require": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
}
|
|
}
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "tsup src/index.ts --format esm,cjs --dts --treeshake",
|
|
"test:types": "tsc",
|
|
"test:e2e:browser": "playwright test --project=e2e",
|
|
"test:e2e:nodejs": "jest --maxWorkers=50% test/e2e/nodejs",
|
|
"test:e2e": "yarn test:e2e:browser && yarn test:e2e:nodejs",
|
|
"test:integration:browser": "playwright test --project=integration",
|
|
"test:integration": "yarn test:integration:browser",
|
|
"test:unit": "jest --maxWorkers=50% test/unit",
|
|
"lint": "eslint '**/{src,test,scripts}/**/*.ts'",
|
|
"lint:fix": "yarn lint --fix"
|
|
},
|
|
"dependencies": {
|
|
"@gitbeaker/core": "^43.8.0",
|
|
"@gitbeaker/requester-utils": "^43.8.0"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.56.1",
|
|
"@types/node": "^24.10.1",
|
|
"tsup": "^8.5.1",
|
|
"typescript": "^5.9.3"
|
|
}
|
|
}
|