UNPKG

semantic-release-yarn

Version:

semantic-release plugin to publish a npm package with yarn

116 lines 2.93 kB
{ "name": "semantic-release-yarn", "version": "3.0.2", "description": "semantic-release plugin to publish a npm package with yarn", "keywords": [ "npm", "publish", "semantic-release", "yarn", "monorepo" ], "homepage": "https://github.com/hongaar/semantic-release-yarn", "bugs": "https://github.com/hongaar/semantic-release-yarn/issues", "repository": "github:hongaar/semantic-release-yarn", "license": "MIT", "author": "Joram van den Boezem <joram@vandenboezem.nl> (https://joram.dev)", "contributors": [ "Pierre Vanduynslager (https://twitter.com/@pvdlg_)", "Stephan Bönnemann <stephan@boennemann.me> (http://boennemann.me)", "Gregor Martynus (https://twitter.com/gr2m)" ], "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist" ], "scripts": { "build": "yarn clean && yarn build:esm", "build:esm": "tsc", "clean": "rm -rf dist", "doctoc": "doctoc README.md", "format": "prettier --write --ignore-unknown .", "format:check": "prettier --check --ignore-unknown .", "prepublish": "yarn build", "release": "semantic-release", "test": "ava" }, "lint-staged": { "*": "prettier --write --ignore-unknown" }, "nyc": { "all": true, "include": [ "lib/**/*.js", "index.js" ], "reporter": [ "json", "text", "html" ] }, "dependencies": { "@semantic-release/error": "^4.0.0", "aggregate-error": "^5.0.0", "cosmiconfig": "^8.1.0", "execa": "^8.0.1", "fs-extra": "^11.1.0", "js-yaml": "^4.1.0", "lodash": "^4.17.21", "nerf-dart": "^1.0.0", "read-pkg": "^8.0.0", "semver": "^7.3.8" }, "devDependencies": { "@semantic-release/changelog": "6.0.3", "@semantic-release/git": "10.0.1", "@types/dockerode": "3.3.20", "@types/env-ci": "3.1.3", "@types/fs-extra": "11.0.3", "@types/js-yaml": "4.0.8", "@types/lodash": "4.14.200", "@types/node": "20.8.3", "@types/prettier": "3.0.0", "@types/semantic-release": "20.0.2", "@types/semver": "7.5.4", "@types/sinon": "10.0.16", "@types/stream-buffers": "3.0.5", "ava": "5.3.1", "dockerode": "4.0.0", "doctoc": "2.2.1", "get-stream": "7.0.1", "got": "12.6.0", "husky": "8.0.3", "lint-staged": "14.0.1", "moker": "2.0.6", "p-retry": "6.1.0", "prettier": "3.0.3", "semantic-release": "22.0.5", "sinon": "17.0.0", "stream-buffers": "3.0.2", "tempy": "3.1.0", "ts-node": "10.9.1", "typescript": "5.2.2" }, "peerDependencies": { "semantic-release": ">=19.0.0" }, "packageManager": "yarn@4.0.1", "engines": { "node": ">=18" }, "moker": { "plugins": [ "typescript", "github-actions", "semantic-release", "prettier", "lint-staged", "husky", "dependabot", "doctoc" ] } }