mirror of
https://github.com/jdalrymple/gitbeaker.git
synced 2026-01-18 15:55:30 +00:00
54 lines
1.2 KiB
JSON
54 lines
1.2 KiB
JSON
{
|
|
"name": "@gitbeaker/node",
|
|
"description": "Full NodeJS implementation of the GitLab API. Supports Promises, Async/Await.",
|
|
"version": "29.0.0",
|
|
"author": {
|
|
"name": "Justin Dalrymple"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/jdalrymple/gitbeaker/issues"
|
|
},
|
|
"dependencies": {
|
|
"@gitbeaker/core": "^29.0.0",
|
|
"@gitbeaker/requester-utils": "^29.0.0",
|
|
"got": "^11.7.0",
|
|
"xcase": "^2.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^15.0.1",
|
|
"form-data": "^4.0.0",
|
|
"openpgp": "^4.10.10",
|
|
"rollup": "^2.41.2",
|
|
"rollup-plugin-typescript2": "^0.30.0",
|
|
"ts-node": "^9.1.1",
|
|
"typescript": "^4.2.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=10.19.0"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"homepage": "https://github.com/jdalrymple/gitbeaker#readme",
|
|
"keywords": [
|
|
"api",
|
|
"es5",
|
|
"es6",
|
|
"gitlab",
|
|
"got"
|
|
],
|
|
"license": "MIT",
|
|
"main": "dist/index.js",
|
|
"module": "dist/index.es.js",
|
|
"types": "dist/types/index.d.ts",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/jdalrymple/gitbeaker"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc && rollup -c",
|
|
"test:integration": "jest test/integration",
|
|
"test:unit": "jest test/unit"
|
|
}
|
|
}
|