all-contributors-cli/package.json
2017-01-25 10:20:34 -08:00

62 lines
1.3 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"
},
"scripts": {
"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",
"inquirer": "^0.12.0",
"lodash": "^4.11.2",
"request": "^2.72.0",
"yargs": "^4.7.0"
},
"devDependencies": {
"ava": "^0.14.0",
"nock": "^8.0.0",
"nyc": "^6.4.2",
"xo": "^0.15.0",
"semantic-release": "^6.3.2"
},
"ava": {
"files": [
"lib/**/*.test.js"
]
},
"files": [
"cli.js",
"lib",
"!lib/**/*.test.js",
"!lib/**/fixtures"
],
"xo": {
"space": 2,
"rules": {
"camelcase": [
2,
{
"properties": "never"
}
]
}
}
}