all-contributors-cli/package.json

85 lines
2 KiB
JSON
Raw Normal View History

2016-02-29 00:48:55 +00:00
{
"name": "all-contributors-cli",
2017-01-25 18:20:34 +00:00
"version": "0.0.0-semantically-released",
2016-02-29 00:48:55 +00:00
"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"
}
},
2016-02-29 00:48:55 +00:00
"repository": {
"type": "git",
2019-01-07 06:38:29 +00:00
"url": "https://github.com/all-contributors/all-contributors-cli.git"
2016-02-29 00:48:55 +00:00
},
"keywords": [
"all-contributors",
"contributors"
],
2016-02-29 00:48:55 +00:00
"author": "Jeroen Engels <jfm.engels@gmail.com>",
"license": "MIT",
"bugs": {
2019-01-07 06:38:29 +00:00
"url": "https://github.com/all-contributors/all-contributors-cli/issues"
2016-02-29 00:48:55 +00:00
},
2019-01-07 06:38:29 +00:00
"homepage": "https://github.com/all-contributors/all-contributors-cli#readme",
2016-02-29 00:48:55 +00:00
"dependencies": {
"@babel/runtime": "^7.7.6",
"async": "^3.1.0",
"chalk": "^4.0.0",
"didyoumean": "^1.2.1",
"inquirer": "^7.3.3",
"json-fixer": "^1.6.8",
2016-05-05 14:15:29 +00:00
"lodash": "^4.11.2",
"node-fetch": "^2.6.0",
"pify": "^5.0.0",
"yargs": "^15.0.1"
},
"devDependencies": {
"codecov": "^3.8.1",
"cz-conventional-changelog": "^3.3.0",
"git-cz": "^4.7.6",
"kcd-scripts": "^6.2.0",
"nock": "^12.0.0",
"semantic-release": "^17.0.8"
2016-03-06 23:20:10 +00:00
},
"eslintIgnore": [
"node_modules",
"coverage",
"dist"
],
"eslintConfig": {
"extends": "./node_modules/kcd-scripts/eslint.js",
2016-03-06 23:20:10 +00:00
"rules": {
"camelcase": "off",
"no-process-exit": "off",
"import/extensions": "off",
"func-names": "off",
"consistent-return": "off"
2016-03-06 23:20:10 +00:00
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
2016-02-29 00:48:55 +00:00
}
}