{ "name": "gitlab", "version": "3.3.2", "description": "Full NodeJS implementation of the GitLab API. Supports Promises, Async/Await.", "main": "dist/latest/index.js", "engines": { "node": ">=8.9.0" }, "scripts": { "build:clean": "rimraf -rf dist && mkdirp -p dist", "build:es6": "babel src -d dist/latest --config-file=./.babelrc", "build:es5": "babel src -d dist/es5 --config-file=./.babelrc-es5", "build": "npm run build:clean && npm run build:es6 && npm run build:es5", "lint": "node_modules/.bin/eslint ./src ./tests", "test:bundles": "jest tests/bundles", "test:infrastructure": "jest tests/infrastructure", "test:services": "jest tests/services", "test": "jest && codecov", "test:watch": "GITLAB_URL=http://localhost:8080 API_TOKEN=ysccjxQtMCqz_wBfJEy2 jest --watch", "prepublishOnly": "npm run build" }, "repository": { "type": "git", "url": "https://github.com/jdalrymple/node-gitlab" }, "keywords": [ "gitlab", "api", "es6", "es5", "request" ], "author": "Justin Dalrymple ", "license": "MIT", "readmeFilename": "README.md", "devDependencies": { "@babel/cli": "^7.0.0-beta.46", "@babel/core": "^7.0.0-beta.46", "@babel/plugin-proposal-export-default-from": "^7.0.0-beta.46", "@babel/plugin-proposal-export-namespace-from": "^7.0.0-beta.46", "@babel/plugin-transform-runtime": "^7.0.0-beta.46", "@babel/preset-env": "^7.0.0-beta.46", "babel-eslint": "^8.2.3", "babel-jest": "^23.0.0-alpha.0", "eslint": "^5.0.0-alpha.2", "eslint-config-airbnb": "^16.1.0", "eslint-plugin-import": "^2.11.0", "eslint-plugin-jest": "^21.15.0", "eslint-plugin-jsx-a11y": "^6.0.3", "eslint-plugin-react": "^7.7.0", "jest": "^23.0.0-charlie.1", "jest-tap-reporter": "^1.9.0" }, "dependencies": { "@babel/runtime": "^7.0.0-beta.46", "humps": "^2.0.1", "jest": "^23.0.0-alpha.4", "lodash.pick": "^4.4.0", "parse-link-header": "^1.0.1", "qs": "^6.5.2", "request": "^2.85.0", "request-promise": "^4.2.2", "request-promise-core": "^1.1.1", "url-join": "^4.0.0", "util.promisify": "^1.0.0", "xhr": "^2.4.1" } }