all-contributors-cli/package.json

58 lines
1.2 KiB
JSON
Raw Normal View History

2016-02-29 00:48:55 +00:00
{
"name": "all-contributors-cli",
2016-05-02 20:17:04 +00:00
"version": "3.0.0",
2016-02-29 00:48:55 +00:00
"description": "Tool to easily add recognition for new contributors",
"bin": {
"all-contributors": "cli.js"
},
"scripts": {
2016-03-20 15:46:31 +00:00
"lint": "eslint cli.js \"lib/**/*.js\" && xo",
2016-03-06 23:20:10 +00:00
"test": "npm run lint && npm run test-unit",
2016-03-27 14:58:45 +00:00
"test-unit": "ava",
"test-unit:w": "ava --watch"
},
2016-02-29 00:48:55 +00:00
"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": {
2016-03-21 22:53:02 +00:00
"async": "^2.0.0-rc.1",
2016-03-21 21:40:32 +00:00
"inquirer": "^0.12.0",
2016-03-02 22:45:23 +00:00
"lodash": "^4.6.1",
"request": "^2.69.0",
2016-03-20 15:46:31 +00:00
"yargs": "^4.3.2"
},
"devDependencies": {
2016-04-07 22:22:11 +00:00
"ava": "^0.14.0",
2016-03-20 15:46:31 +00:00
"eslint": "^2.4.0",
"eslint-plugin-ava": "^1.2.1",
2016-03-06 23:20:10 +00:00
"xo": "^0.13.0"
},
2016-03-27 14:58:45 +00:00
"ava": {
2016-03-28 21:28:07 +00:00
"files": [
"lib/**/*.test.js"
]
2016-03-27 14:58:45 +00:00
},
2016-03-06 23:20:10 +00:00
"xo": {
"space": 2,
"rules": {
2016-03-20 15:46:31 +00:00
"camelcase": [
2,
{
"properties": "never"
}
]
2016-03-06 23:20:10 +00:00
}
2016-02-29 00:48:55 +00:00
}
}