all-contributors-cli/package.json

56 lines
1.5 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"
},
"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"
},
2016-02-29 00:48:55 +00:00
"repository": {
"type": "git",
2017-01-25 18:20:34 +00:00
"url": "https://github.com/jfmengels/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": {
"url": "https://github.com/jfmengels/all-contributors-cli/issues"
},
"homepage": "https://github.com/jfmengels/all-contributors-cli#readme",
"dependencies": {
2016-03-21 22:53:02 +00:00
"async": "^2.0.0-rc.1",
"chalk": "^2.3.0",
"inquirer": "^4.0.0",
2016-05-05 14:15:29 +00:00
"lodash": "^4.11.2",
"pify": "^3.0.0",
2016-05-05 14:15:29 +00:00
"request": "^2.72.0",
"yargs": "^10.0.3"
},
"devDependencies": {
"kcd-scripts": "^0.29.0",
"nock": "^9.1.0"
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
}
2016-02-29 00:48:55 +00:00
}
}