gitbeaker/package.json

94 lines
2.6 KiB
JSON

{
"name": "gitlab",
"description": "Full NodeJS implementation of the GitLab API. Supports Promises, Async/Await.",
"license": "MIT",
"author": {
"email": "justin.s.dalrymple@gmail.com",
"name": "Justin Dalrymple"
},
"repository": {
"type": "git",
"url": "https://github.com/jdalrymple/node-gitlab"
},
"homepage": "https://github.com/jdalrymple/node-gitlab#readme",
"bugs": {
"url": "https://github.com/jdalrymple/node-gitlab/issues"
},
"version": "4.2.0",
"main": "dist/latest/index.js",
"browser": {
"dist/latest/index.js": "dist/browser.js",
"got": "ky"
},
"files": [
"dist"
],
"scripts": {
"build": "npm run build:clean && npm run build:es6 && npm run build:es5 && npm run build:browser",
"build:clean": "rimraf -rf dist && mkdirp dist",
"build:es5": "tsc -p tsconfig-es5.json",
"build:es6": "tsc",
"build:browser": "browserify -p tsify src/index.ts > dist/browser.js",
"commit": "npx git-cz",
"lint": "tslint 'src/**/*.{ts,tsx}' --format stylish --project tsconfig.json",
"prepublishOnly": "npm run build",
"prepush": "npm run lint",
"semantic-release": "semantic-release",
"test": "jest --debug --runInBand && codecov",
"test:bundles": "jest test/tests/bundles",
"test:infrastructure": "jest test/tests/infrastructure",
"test:services": "jest test/tests/services"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"form-data": "^2.3.2",
"got": "^9.2.2",
"humps": "^2.0.1",
"ky": "^0.4.1",
"parse-link-header": "^1.0.1",
"randomstring": "^1.1.5",
"url-join": "^4.0.0"
},
"devDependencies": {
"@semantic-release/changelog": "^3.0.0",
"@semantic-release/git": "^7.0.4",
"@semantic-release/npm": "^5.0.4",
"@types/humps": "^1.1.2",
"@types/jest": "^23.3.5",
"@types/parse-link-header": "^1.0.0",
"@types/qs": "^6.5.1",
"@types/request-promise": "^4.1.42",
"@types/url-join": "^0.8.2",
"@types/util.promisify": "^1.0.0",
"browserify": "^16.2.3",
"codecov": "^3.1.0",
"cz-conventional-changelog": "^2.1.0",
"husky": "^1.1.1",
"jest": "^23.6.0",
"jest-extended": "^0.11.0",
"jest-tap-reporter": "^1.9.0",
"semantic-release": "^15.9.17",
"ts-jest": "^23.10.4",
"tsify": "^4.0.0",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.11.0",
"typescript": "^3.1.2"
},
"keywords": [
"api",
"es5",
"es6",
"gitlab",
"got",
"ky",
"browser"
],
"engines": {
"node": ">=8.9.0"
}
}