mirror of
https://github.com/all-contributors/cli.git
synced 2025-01-09 21:46:29 +00:00
e73693827d
Co-authored-by: greenkeeper[bot] <23040076+greenkeeper[bot]@users.noreply.github.com> Co-authored-by: Maximilian Berkmann <maxieberkmann@gmail.com>
84 lines
2 KiB
JSON
84 lines
2 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"
|
|
},
|
|
"main": "dist/api.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",
|
|
"commit": "git-cz",
|
|
"start": "./dist/cli.js",
|
|
"dev": "./src/cli.js"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "kcd-scripts pre-commit"
|
|
}
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/all-contributors/all-contributors-cli.git"
|
|
},
|
|
"keywords": [
|
|
"all-contributors",
|
|
"contributors"
|
|
],
|
|
"author": "Jeroen Engels <jfm.engels@gmail.com>",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/all-contributors/all-contributors-cli/issues"
|
|
},
|
|
"homepage": "https://github.com/all-contributors/all-contributors-cli#readme",
|
|
"dependencies": {
|
|
"@babel/runtime": "^7.7.6",
|
|
"async": "^3.0.1",
|
|
"chalk": "^4.0.0",
|
|
"didyoumean": "^1.2.1",
|
|
"inquirer": "^7.0.4",
|
|
"json-fixer": "^1.4.0",
|
|
"lodash": "^4.11.2",
|
|
"pify": "^5.0.0",
|
|
"request": "^2.72.0",
|
|
"yargs": "^15.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"codecov": "^3.1.0",
|
|
"cz-conventional-changelog": "^3.0.0",
|
|
"git-cz": "^4.1.0",
|
|
"kcd-scripts": "^6.2.0",
|
|
"nock": "^12.0.0",
|
|
"semantic-release": "^17.0.8"
|
|
},
|
|
"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"
|
|
}
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "cz-conventional-changelog"
|
|
}
|
|
}
|
|
}
|