all-contributors-cli/package.json
Jeroen Engels cbe4fccd6c 3.0.4
2016-05-11 20:50:48 +02:00

59 lines
1.2 KiB
JSON

{
"name": "all-contributors-cli",
"version": "3.0.4",
"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"
]
},
"files": [
"cli.js",
"lib",
"!lib/**/*.test.js",
"!lib/**/fixtures"
],
"xo": {
"space": 2,
"rules": {
"camelcase": [
2,
{
"properties": "never"
}
]
}
}
}