UNPKG

semantic-release-contributors

Version:

semantic-release plugin to automatically update contributors list from git history

126 lines (125 loc) 3 kB
{ "name": "semantic-release-contributors", "description": "semantic-release plugin to automatically update contributors list from git history", "version": "3.1.1", "author": "Florent Schildknecht <florent.schildknecht@gmail.com> (https://floschild.me)", "homepage": "https://github.com/flo-sch/semantic-release-contributors#readme", "repository": { "type": "git", "url": "https://github.com/flo-sch/semantic-release-contributors.git" }, "bugs": { "url": "https://github.com/flo-sch/semantic-release-contributors/issues" }, "publishConfig": { "access": "public" }, "engines": { "node": ">=10.18" }, "files": [ "dist", "lib" ], "keywords": [ "author", "automation", "changelog", "commit", "contribution", "contributors", "conventional-changelog", "conventional-commits", "module", "package", "publish", "release", "semantic-release", "semver", "version" ], "license": "MIT", "module": "dist/index.esm.js", "main": "dist/index.js", "source": "lib/index.js", "sideEffects": false, "scripts": { "build": "microbundle -f cjs,es --target node", "codecov": "codecov -f coverage/coverage-final.json", "commit": "git-cz", "lint": "xo", "prebuild": "rimraf dist/*", "presemantic-release": "npm run build", "pretest": "npm run lint", "semantic-release": "semantic-release", "test": "nyc ava -v", "watch": "microbundle watch" }, "dependencies": { "aggregate-error": "^3.0.0", "jsonfile": "^6.0.1", "parse-author": "^2.0.0", "stringify-author": "^0.1.3" }, "devDependencies": { "@ava/babel": "^1.0.1", "@commitlint/cli": "^8.1.0", "@commitlint/config-conventional": "^8.1.0", "@semantic-release/changelog": "^5.0.1", "@semantic-release/commit-analyzer": "^8.0.1", "@semantic-release/error": "^2.2.0", "@semantic-release/github": "^7.0.5", "@semantic-release/npm": "^7.0.5", "@semantic-release/release-notes-generator": "^9.0.1", "ava": "^3.6.0", "codecov": "^3.5.0", "commitizen": "^4.0.3", "cz-conventional-changelog": "^3.0.2", "esm": "^3.2.25", "fs-extra": "^9.0.0", "husky": "^4.2.3", "lint-staged": "^10.0.3", "microbundle": "^0.12.0-next.8", "nyc": "^15.0.1", "prettier": "^2.0.4", "rimraf": "^3.0.2", "semantic-release": "^17.0.4", "sinon": "^9.0.2", "tempy": "^0.5.0", "xo": "^0.29.0" }, "peerDependencies": { "semantic-release": ">=15.8.0 <18.0.0" }, "prettier": { "printWidth": 120, "trailingComma": "es5" }, "ava": { "babel": true, "files": [ "test/**/*.test.js" ], "require": [ "esm" ] }, "nyc": { "include": [ "lib/**/*.js" ], "reporter": [ "json", "text", "html" ], "all": true }, "xo": { "prettier": true, "space": true, "rules": { "unicorn/string-content": "off" } } }