all-contributors-cli/package.json

69 lines
1.4 KiB
JSON
Raw Normal View History

2016-02-29 00:48:55 +00:00
{
"name": "all-contributors-cli",
2017-01-25 18:20:34 +00:00
"version": "0.0.0-semantically-released",
2016-02-29 00:48:55 +00:00
"description": "Tool to easily add recognition for new contributors",
"bin": {
"all-contributors": "cli.js"
},
"engines": {
"node": ">=4"
},
"scripts": {
"all-contributors": "./cli.js",
2017-01-25 18:20:34 +00:00
"test": "xo && nyc ava",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
2016-02-29 00:48:55 +00:00
"repository": {
"type": "git",
2017-01-25 18:20:34 +00:00
"url": "https://github.com/jfmengels/all-contributors-cli.git"
2016-02-29 00:48:55 +00:00
},
"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",
"chalk": "^2.3.0",
"inquirer": "^3.0.1",
2016-05-05 14:15:29 +00:00
"lodash": "^4.11.2",
"pify": "^2.3.0",
2016-05-05 14:15:29 +00:00
"request": "^2.72.0",
"yargs": "^4.7.0"
},
"devDependencies": {
2016-04-07 22:22:11 +00:00
"ava": "^0.14.0",
"nock": "^8.0.0",
2016-05-05 14:15:29 +00:00
"nyc": "^6.4.2",
"semantic-release": "^6.3.2",
"xo": "^0.15.0"
2016-03-06 23:20:10 +00:00
},
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-05-05 15:44:17 +00:00
"files": [
"cli.js",
"lib",
"!lib/**/*.test.js",
"!lib/**/fixtures"
],
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
}
}