gitbeaker/package.json
Daniel Rose 8f5fec52ce fix: Update Typescript to 3.5.1
This fixes the included library definition of encodeURIComponent().
See https://github.com/Microsoft/TypeScript/issues/18159 for details.
2019-06-12 15:06:01 +02:00

94 lines
2.5 KiB
JSON

{
"name": "gitlab",
"version": "6.3.4",
"description": "Full NodeJS implementation of the GitLab API. Supports Promises, Async/Await.",
"keywords": [
"api",
"browser",
"es5",
"es6",
"gitlab",
"ky"
],
"homepage": "https://github.com/jdalrymple/node-gitlab#readme",
"bugs": {
"url": "https://github.com/jdalrymple/node-gitlab/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jdalrymple/node-gitlab"
},
"license": "MIT",
"author": {
"name": "Justin Dalrymple",
"email": "justin.s.dalrymple@gmail.com"
},
"files": [
"dist"
],
"main": "dist/index.js",
"module": "dist/index.es.js",
"browser": "dist/index.browser.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc && rollup -c",
"commit": "npx git-cz",
"coverage": "codecov",
"lint": "tslint -p . -t stylish",
"lint:doc:fix": "prettier --write './*.json' './*.yml' './*.md'",
"lint:fix": "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"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"form-data": "^2.3.3",
"humps": "^2.0.1",
"ky": "^0.11.0",
"ky-universal": "^0.2.1",
"li": "^1.3.0",
"query-string": "^6.5.0",
"randomstring": "^1.1.5",
"universal-url": "^2.0.0"
},
"devDependencies": {
"lint-staged": "^8.1.7",
"@semantic-release/changelog": "^3.0.2",
"@semantic-release/git": "^7.0.8",
"@semantic-release/npm": "^5.1.7",
"@types/form-data": "^2.2.1",
"@types/humps": "^1.1.2",
"@types/jest": "^24.0.13",
"codecov": "^3.5.0",
"cz-conventional-changelog": "^2.1.0",
"husky": "^2.3.0",
"jest": "^24.8.0",
"jest-extended": "^0.11.1",
"jest-tap-reporter": "^1.9.0",
"prettier": "^1.17.1",
"rollup": "^1.15.1",
"rollup-plugin-commonjs": "^10.0.0",
"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.0.0",
"rollup-plugin-terser": "^5.0.0",
"rollup-plugin-typescript2": "^0.21.1",
"semantic-release": "^15.13.13",
"ts-jest": "^24.0.2",
"tslint": "^5.16.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.5.1"
},
"engines": {
"node": ">=8.9.0"
}
}