all-contributors-cli/package.json
C.Y.Xu 0d1346d04e feat: support Gitlab self hosted instance (#95)
* feat: support Gitlab self hosted instance (#89)

* docs: fix some doc typo

fixes: #89
2018-08-02 16:51:04 -05:00

64 lines
1.5 KiB
JSON

{
"name": "all-contributors-cli",
"version": "0.0.0-semantically-released",
"description": "Tool to easily add recognition for new contributors",
"bin": {
"all-contributors": "dist/cli.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=4"
},
"scripts": {
"add-contributor": "kcd-scripts contributors add",
"build": "kcd-scripts build",
"lint": "kcd-scripts lint",
"test": "kcd-scripts test",
"validate": "kcd-scripts validate",
"precommit": "kcd-scripts precommit"
},
"repository": {
"type": "git",
"url": "https://github.com/jfmengels/all-contributors-cli.git"
},
"keywords": [
"all-contributors",
"contributors"
],
"author": "Jeroen Engels <jfm.engels@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jfmengels/all-contributors-cli/issues"
},
"homepage": "https://github.com/jfmengels/all-contributors-cli#readme",
"dependencies": {
"async": "^2.0.0-rc.1",
"chalk": "^2.3.0",
"inquirer": "^4.0.0",
"lodash": "^4.11.2",
"pify": "^3.0.0",
"request": "^2.72.0",
"yargs": "^10.0.3"
},
"devDependencies": {
"kcd-scripts": "^0.30.0",
"nock": "^9.1.0"
},
"eslintIgnore": [
"node_modules",
"coverage",
"dist"
],
"eslintConfig": {
"extends": "./node_modules/kcd-scripts/eslint.js",
"rules": {
"camelcase": "off",
"no-process-exit": "off",
"import/extensions": "off",
"func-names": "off",
"consistent-return": "off"
}
}
}