gitbeaker/package.json
jdalrymple 6d5a4b92b0
Typescript Support (#183)
* chore: Introduce typescript 
* chore: Remove lodash.pick, use native js instead
* chore: Add tslint and extend Airbnb ruleset
* chore: Remove Babel Dependency, replace build steps with tsc
* chore: change target for modern env from es2017 to es6 (async/await should be transpiled to downlevel js)
* chore(package): Updating packages
* fix: Fix error while throwing an error in RequestHelper (#156)
* feat: Support rejectUnauthorized parameter (#164)
* feat: Adding project archive abilities
* fix(test): Application settings API updated (#177)
* fix: Removing token requirement (#176)
* chore: Removing npmignore and using files instead.
* fix: obey rate limits for all request types correctly (#170)
* fix: Camel casing broke the body params
2018-09-05 11:22:28 -04:00

84 lines
2.3 KiB
JSON

{
"name": "gitlab",
"version": "4.0.0",
"description": "Full NodeJS implementation of the GitLab API. Supports Promises, Async/Await.",
"main": "dist/latest/index.js",
"engines": {
"node": ">=8.9.0"
},
"scripts": {
"prepush": "npm run lint",
"commit": "npx git-cz",
"build:clean": "rimraf -rf dist && mkdirp dist",
"build:es6": "tsc -p tsconfig.dist.json",
"build:es5": "tsc -p tsconfig-es5.dist.json",
"build": "npm run build:clean && npm run build:es6 && npm run build:es5",
"lint": "tslint 'src/**/*.{ts,tsx}' --format stylish --project tsconfig.json",
"test:bundles": "jest test/tests/bundles",
"test:infrastructure": "jest test/tests/infrastructure",
"test:services": "jest test/tests/services",
"test": "jest && codecov",
"prepublishOnly": "npm run build",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/jdalrymple/node-gitlab"
},
"keywords": [
"gitlab",
"api",
"es6",
"es5",
"request"
],
"bugs": {
"url": "https://github.com/jdalrymple/node-gitlab/issues"
},
"author": "Justin Dalrymple <justin.s.dalrymple@gmail.com>",
"license": "MIT",
"readmeFilename": "README.md",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"files": [
"dist"
],
"devDependencies": {
"@semantic-release/changelog": "^3.0.0",
"@semantic-release/git": "^7.0.1",
"@semantic-release/npm": "^5.0.2",
"@types/humps": "^1.1.2",
"@types/jest": "^23.3.1",
"@types/qs": "^6.5.1",
"@types/parse-link-header": "^1.0.0",
"@types/request-promise": "^4.1.42",
"@types/url-join": "^0.8.2",
"@types/util.promisify": "^1.0.0",
"semantic-release": "^15.9.8",
"codecov": "^3.0.4",
"husky": "^0.14.3",
"cz-conventional-changelog": "^2.1.0",
"jest": "^23.5.0",
"jest-extended": "^0.8.1",
"jest-tap-reporter": "^1.9.0",
"ts-jest": "^23.1.3",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.9.2",
"typescript": "3.0.1"
},
"dependencies": {
"humps": "^2.0.1",
"parse-link-header": "^1.0.1",
"qs": "^6.5.2",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"request-promise-core": "^1.1.1",
"url-join": "^4.0.0",
"util.promisify": "^1.0.0",
"xhr": "^2.5.0"
}
}