all-contributors-cli/package.json
2016-05-05 16:15:52 +02:00

53 lines
1.1 KiB
JSON

{
"name": "all-contributors-cli",
"version": "3.0.0",
"description": "Tool to easily add recognition for new contributors",
"bin": {
"all-contributors": "cli.js"
},
"scripts": {
"test": "xo && nyc ava"
},
"repository": {
"type": "git",
"url": "git+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",
"inquirer": "^0.12.0",
"lodash": "^4.11.2",
"request": "^2.72.0",
"yargs": "^4.7.0"
},
"devDependencies": {
"ava": "^0.14.0",
"nyc": "^6.4.2",
"xo": "^0.15.0"
},
"ava": {
"files": [
"lib/**/*.test.js"
]
},
"xo": {
"space": 2,
"rules": {
"camelcase": [
2,
{
"properties": "never"
}
]
}
}
}