UNPKG

@release-it-plugins/workspaces

Version:

release-it plugin for bumping and publishing workspaces

89 lines (88 loc) 2.05 kB
{ "name": "@release-it-plugins/workspaces", "version": "4.2.0", "description": "release-it plugin for bumping and publishing workspaces", "keywords": [ "release", "release-it", "release-it-plugin", "plugin" ], "repository": "https://github.com/release-it-plugins/workspaces", "license": "MIT", "author": "Robert Jackson <me@rwjblue.com>", "type": "module", "main": "index.js", "files": [ "index.js" ], "scripts": { "lint:js": "eslint .", "test": "npm-run-all lint:js test:vitest", "test:watch": "vitest --no-threads", "test:vitest": "vitest run --no-threads" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "*.js": "eslint" }, "dependencies": { "detect-indent": "^6.0.0", "detect-newline": "^3.1.0", "semver": "^7.1.3", "url-join": "^4.0.1", "validate-peer-dependencies": "^1.0.0", "walk-sync": "^2.0.2", "yaml": "^2.1.1" }, "devDependencies": { "@release-it-plugins/lerna-changelog": "^6.1.0", "broccoli-test-helper": "^2.0.0", "eslint": "^8.19.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-node": "^11.1.0", "eslint-plugin-prettier": "^4.2.1", "husky": "^4.2.3", "lint-staged": "^10.1.1", "lodash": "^4.17.21", "npm-run-all": "^4.1.5", "prettier": "^2.0.2", "release-it": "^17.0.0", "sinon": "^9.0.1", "tmp": "^0.1.0", "vitest": "^0.33.0" }, "peerDependencies": { "release-it": "^14.0.0 || ^15.2.0 || ^16.0.0 || ^17.0.0" }, "engines": { "node": ">= 16" }, "volta": { "node": "16.20.1", "npm": "9.8.0" }, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" }, "release-it": { "plugins": { "@release-it-plugins/lerna-changelog": { "infile": "CHANGELOG.md", "launchEditor": true } }, "git": { "tagName": "v${version}" }, "github": { "release": true, "tokenRef": "GITHUB_AUTH" } } }