all-contributors-cli/package.json
Mehdi Achour 88c7a29681 feat: Add check command that compares GitHub contributors with credited ones (#58)
* feat: Add checking functionnality that compares contributors with GH data

* fix(check): Use the info from config file, paginate GH data

* doc(check): Document the new check command

* fix(eslint): Add missing semicolon

* tests: Add tests for utils.check

* fix: Check for code and test only

* refactor: use includes and correct awaits

* refactor: more includes and template literals
2017-11-08 10:09:20 -07:00

68 lines
1.4 KiB
JSON

{
"name": "all-contributors-cli",
"version": "0.0.0-semantically-released",
"description": "Tool to easily add recognition for new contributors",
"bin": {
"all-contributors": "cli.js"
},
"engines": {
"node": ">=4"
},
"scripts": {
"all-contributors": "./cli.js",
"test": "xo && nyc ava",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"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": "^3.0.1",
"lodash": "^4.11.2",
"pify": "^2.3.0",
"request": "^2.72.0",
"yargs": "^4.7.0"
},
"devDependencies": {
"ava": "^0.14.0",
"nock": "^8.0.0",
"nyc": "^6.4.2",
"semantic-release": "^6.3.2",
"xo": "^0.15.0"
},
"ava": {
"files": [
"lib/**/*.test.js"
]
},
"files": [
"cli.js",
"lib",
"!lib/**/*.test.js",
"!lib/**/fixtures"
],
"xo": {
"space": 2,
"rules": {
"camelcase": [
2,
{
"properties": "never"
}
]
}
}
}