mirror of
https://github.com/jdalrymple/gitbeaker.git
synced 2026-01-18 15:55:30 +00:00
66 lines
1.8 KiB
JSON
66 lines
1.8 KiB
JSON
{
|
|
"name": "@gitbeaker/browser",
|
|
"description": "Full Browser implementation of the GitLab API. Supports Promises, Async/Await.",
|
|
"version": "35.6.0",
|
|
"author": {
|
|
"name": "Justin Dalrymple"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/jdalrymple/gitbeaker/issues"
|
|
},
|
|
"dependencies": {
|
|
"@gitbeaker/core": "^35.6.0",
|
|
"@gitbeaker/requester-utils": "^35.6.0",
|
|
"delay": "^5.0.0",
|
|
"ky": "0.28.7"
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/plugin-commonjs": "^21.0.0",
|
|
"@rollup/plugin-json": "^4.1.0",
|
|
"@rollup/plugin-node-resolve": "^13.0.0",
|
|
"@rollup/plugin-replace": "^3.0.0",
|
|
"@types/node": "^17.0.0",
|
|
"headers-utils": "^3.0.2",
|
|
"jest-extended": "^1.0.0",
|
|
"jest-playwright-preset": "^1.5.1",
|
|
"node-fetch": "^3.0.0",
|
|
"playwright": "^1.9.2",
|
|
"rollup": "^2.47.0",
|
|
"rollup-plugin-node-globals": "^1.4.0",
|
|
"rollup-plugin-node-polyfills": "^0.2.1",
|
|
"rollup-plugin-terser": "^7.0.2",
|
|
"rollup-plugin-typescript2": "^0.31.1",
|
|
"tslib": "^2.3.1",
|
|
"typescript": "^4.2.4",
|
|
"uuid": "^8.3.2"
|
|
},
|
|
"engines": {
|
|
"node": ">=14.2.0"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"homepage": "https://github.com/jdalrymple/gitbeaker#readme",
|
|
"keywords": [
|
|
"api",
|
|
"es5",
|
|
"es6",
|
|
"gitlab",
|
|
"gitbeaker",
|
|
"ky"
|
|
],
|
|
"license": "MIT",
|
|
"browser": "dist/index.js",
|
|
"main": "dist/index.cjs.js",
|
|
"types": "dist/types",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/jdalrymple/gitbeaker"
|
|
},
|
|
"scripts": {
|
|
"build": "rollup -c",
|
|
"test:integration": "TEST_ID=$(uuid) node --expose-gc ../../node_modules/.bin/jest --runInBand --logHeapUsage test/integration",
|
|
"test:unit": "node --expose-gc ../../node_modules/.bin/jest --runInBand --logHeapUsage test/unit"
|
|
}
|
|
}
|