gitbeaker/packages/browser/package.json
2021-06-07 17:57:30 +00:00

63 lines
1.5 KiB
JSON

{
"name": "@gitbeaker/browser",
"description": "Full Browser implementation of the GitLab API. Supports Promises, Async/Await.",
"version": "29.3.0",
"author": {
"name": "Justin Dalrymple"
},
"bugs": {
"url": "https://github.com/jdalrymple/gitbeaker/issues"
},
"dependencies": {
"@gitbeaker/core": "^29.3.0",
"@gitbeaker/requester-utils": "^29.3.0",
"delay": "^5.0.0",
"ky": "0.25.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-replace": "^2.4.2",
"@types/node": "^15.3.0",
"jest-extended": "^0.11.5",
"jest-playwright-preset": "^1.5.1",
"node-fetch": "^2.6.1",
"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.30.0",
"tslib": "^2.2.0",
"typescript": "^4.2.4",
"uuid": "^8.3.2"
},
"engines": {
"node": ">=10.19.0"
},
"files": [
"dist"
],
"homepage": "https://github.com/jdalrymple/gitbeaker#readme",
"keywords": [
"api",
"es5",
"es6",
"gitlab",
"gitbeaker",
"ky"
],
"license": "MIT",
"browser": "dist/index.js",
"types": "dist/types",
"repository": {
"type": "git",
"url": "https://github.com/jdalrymple/gitbeaker"
},
"scripts": {
"build": "rollup -c",
"test:integration": "TEST_ID=$(uuid) jest test/integration",
"test:unit": "jest test/unit"
}
}