mirror of
https://github.com/all-contributors/cli.git
synced 2025-01-09 21:46:29 +00:00
b0c3376ac4
*BREAKING CHANGE*
* style(generate): changed generator to an HTML based one [WIP]
I added and set the HTML generator for resolving #154 (which works when testing manually but doesn't
when running the cli in dev mode).
fix #154
* refactor(generate): (re)moved files to keep it DRY
* refactor: refactored/updated tests
Update the contributors test (which wasn't already committed somehow) and tweaked the
`format-contribution-type` test.
* docs(readme): removed doctoc
BREAKING CHANGE: (in 2babe26b08
) The resulting contributors table is in HTML/CSS instead of being in Markdown.
* refactor(generate): removed the style from the generation
Removed the `<style>` block from the generated HTML code as it's redundant on Github (since it's one
of the non-whitelisted tags). The `README.md` was also updated reflecting the breaking changes.
* refactor(generate): image height and tweaks
Added `height` to images for avatars, quoted some `<table>` attributes and updated `README.md`
* docs: drop TOC
82 lines
1.9 KiB
JSON
82 lines
1.9 KiB
JSON
{
|
|
"name": "all-contributors-cli",
|
|
"version": "0.0.0-semantically-released",
|
|
"description": "Tool to easily add recognition for new contributors",
|
|
"bin": {
|
|
"all-contributors": "dist/cli.js"
|
|
},
|
|
"main": "dist/api.js",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"engines": {
|
|
"node": ">=4"
|
|
},
|
|
"scripts": {
|
|
"add-contributor": "kcd-scripts contributors add",
|
|
"build": "kcd-scripts build",
|
|
"lint": "kcd-scripts lint",
|
|
"test": "kcd-scripts test",
|
|
"validate": "kcd-scripts validate",
|
|
"commit": "git-cz",
|
|
"start": "./dist/cli.js",
|
|
"dev": "./src/cli.js"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "kcd-scripts pre-commit"
|
|
}
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/all-contributors/all-contributors-cli.git"
|
|
},
|
|
"keywords": [
|
|
"all-contributors",
|
|
"contributors"
|
|
],
|
|
"author": "Jeroen Engels <jfm.engels@gmail.com>",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/all-contributors/all-contributors-cli/issues"
|
|
},
|
|
"homepage": "https://github.com/all-contributors/all-contributors-cli#readme",
|
|
"dependencies": {
|
|
"@babel/runtime": "^7.2.0",
|
|
"async": "^2.0.0-rc.1",
|
|
"chalk": "^2.3.0",
|
|
"inquirer": "^6.2.1",
|
|
"lodash": "^4.11.2",
|
|
"pify": "^4.0.1",
|
|
"request": "^2.72.0",
|
|
"yargs": "^12.0.5"
|
|
},
|
|
"devDependencies": {
|
|
"codecov": "^3.1.0",
|
|
"cz-conventional-changelog": "^2.1.0",
|
|
"git-cz": "^1.8.0",
|
|
"kcd-scripts": "^0.49.0",
|
|
"nock": "^10.0.6",
|
|
"semantic-release": "^15.13.2"
|
|
},
|
|
"eslintIgnore": [
|
|
"node_modules",
|
|
"coverage",
|
|
"dist"
|
|
],
|
|
"eslintConfig": {
|
|
"extends": "./node_modules/kcd-scripts/eslint.js",
|
|
"rules": {
|
|
"camelcase": "off",
|
|
"no-process-exit": "off",
|
|
"import/extensions": "off",
|
|
"func-names": "off",
|
|
"consistent-return": "off"
|
|
}
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "cz-conventional-changelog"
|
|
}
|
|
}
|
|
}
|