{ "name": "gitlab", "description": "Full NodeJS implementation of the GitLab API. Supports Promises, Async/Await.", "version": "10.1.2", "author": { "name": "Justin Dalrymple", "email": "justin.s.dalrymple@gmail.com" }, "browser": "dist/index.browser.js", "bugs": { "url": "https://github.com/jdalrymple/node-gitlab/issues" }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } }, "dependencies": { "form-data": "^2.5.0", "humps": "^2.0.1", "ky": "^0.12.0", "ky-universal": "^0.3.0", "li": "^1.3.0", "query-string": "^6.8.2", "tslint-plugin-prettier": "^2.0.1", "universal-url": "^2.0.0" }, "devDependencies": { "@semantic-release/changelog": "^3.0.4", "@semantic-release/git": "^7.0.16", "@semantic-release/npm": "^5.1.13", "@types/form-data": "^2.5.0", "@types/humps": "^1.1.2", "@types/jest": "^24.0.18", "codecov": "^3.5.0", "cz-conventional-changelog": "^3.0.2", "husky": "^4.0.0-beta.1", "jest": "^24.9.0", "jest-extended": "^0.11.2", "jest-tap-reporter": "^1.9.0", "lint-staged": "^9.2.3", "prettier": "^1.18.2", "rollup": "^1.20.0", "rollup-plugin-commonjs": "^10.0.2", "rollup-plugin-json": "^4.0.0", "rollup-plugin-node-builtins": "^2.1.2", "rollup-plugin-node-globals": "^1.4.0", "rollup-plugin-node-resolve": "^5.2.0", "rollup-plugin-terser": "^5.1.1", "rollup-plugin-typescript2": "^0.22.1", "semantic-release": "^15.13.21", "ts-jest": "^24.0.2", "tslint": "^5.19.0", "tslint-config-airbnb": "^5.11.1", "tslint-config-prettier": "^1.18.0", "typescript": "^3.5.3" }, "engines": { "node": ">=12.0.0" }, "files": [ "dist" ], "homepage": "https://github.com/jdalrymple/node-gitlab#readme", "keywords": [ "api", "browser", "es5", "es6", "gitlab", "ky" ], "license": "MIT", "main": "dist/index.js", "module": "dist/index.es.js", "repository": { "type": "git", "url": "https://github.com/jdalrymple/node-gitlab" }, "scripts": { "build": "tsc && rollup -c", "commit": "npx git-cz", "coverage": "codecov", "lint": "tslint -p . -t stylish && prettier --check './src/**/*.ts' './test/**/*.ts'", "lint:doc:fix": "prettier --write './*.json' './*.yml' './*.md' './*.js'", "lint:fix": "prettier --write './**/*.ts' && npm run lint -- --fix", "prepublishOnly": "npm run build", "release": "semantic-release", "test:integration": "jest test/integration -c=jest.config.json --detectOpenHandles", "test:unit": "jest test/unit --debug -c=jest.config.json" }, "types": "dist/index.d.ts" }