@semantic-release/exec
Version:
semantic-release plugin to run custom shell commands
94 lines (93 loc) • 1.93 kB
JSON
{
"name": "@semantic-release/exec",
"description": "semantic-release plugin to run custom shell commands",
"version": "6.0.3",
"author": "Pierre Vanduynslager (https://github.com/pvdlg)",
"bugs": {
"url": "https://github.com/semantic-release/exec/issues"
},
"contributors": [
"Stephan Bönnemann <stephan@boennemann.me> (http://boennemann.me)",
"Gregor Martynus (https://twitter.com/gr2m)"
],
"dependencies": {
"@semantic-release/error": "^3.0.0",
"aggregate-error": "^3.0.0",
"debug": "^4.0.0",
"execa": "^5.0.0",
"lodash": "^4.17.4",
"parse-json": "^5.0.0"
},
"devDependencies": {
"ava": "3.15.0",
"nyc": "15.1.0",
"semantic-release": "18.0.1",
"sinon": "12.0.1",
"stream-buffers": "3.0.2",
"xo": "0.28.3"
},
"engines": {
"node": ">=14.17"
},
"files": [
"lib",
"index.js"
],
"homepage": "https://github.com/semantic-release/exec#readme",
"keywords": [
"cli",
"publish",
"release",
"script",
"semantic-release",
"shell",
"version"
],
"license": "MIT",
"main": "index.js",
"nyc": {
"include": [
"lib/**/*.js",
"index.js"
],
"reporter": [
"json",
"text",
"html"
],
"all": true
},
"peerDependencies": {
"semantic-release": ">=18.0.0"
},
"prettier": {
"printWidth": 120,
"trailingComma": "es5"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/semantic-release/exec.git"
},
"scripts": {
"lint": "xo",
"pretest": "npm run lint",
"semantic-release": "semantic-release",
"test": "nyc ava -v",
"test:ci": "nyc ava -v"
},
"xo": {
"prettier": true,
"space": true,
"rules": {
"unicorn/string-content": "off"
}
},
"renovate": {
"extends": [
"github>semantic-release/.github"
]
}
}