mirror of
https://github.com/all-contributors/cli.git
synced 2025-01-09 21:46:29 +00:00
51 lines
1.2 KiB
JSON
51 lines
1.2 KiB
JSON
{
|
|
"name": "all-contributors-cli",
|
|
"version": "2.0.0-beta4",
|
|
"description": "Tool to easily add recognition for new contributors",
|
|
"bin": {
|
|
"all-contributors": "cli.js"
|
|
},
|
|
"scripts": {
|
|
"lint": "eslint cli.js \"lib/**/*.js\" && xo",
|
|
"test": "npm run lint && npm run test-unit",
|
|
"test-unit": "ava \"lib/**/*.test.js\"",
|
|
"test-unit:w": "npm run test-unit -- --watch"
|
|
},
|
|
"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": {
|
|
"inquirer": "^0.12.0",
|
|
"lodash": "^4.6.1",
|
|
"request": "^2.69.0",
|
|
"yargs": "^4.3.2"
|
|
},
|
|
"devDependencies": {
|
|
"ava": "^0.13.0",
|
|
"eslint": "^2.4.0",
|
|
"eslint-plugin-ava": "^1.2.1",
|
|
"xo": "^0.13.0"
|
|
},
|
|
"xo": {
|
|
"space": 2,
|
|
"rules": {
|
|
"camelcase": [
|
|
2,
|
|
{
|
|
"properties": "never"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|