UNPKG

@semantic-release/git

Version:

semantic-release plugin to commit release assets to the project's git repository

114 lines (113 loc) 2.91 kB
{ "name": "@semantic-release/git", "description": "semantic-release plugin to commit release assets to the project's git repository", "version": "11.0.1", "author": "Pierre Vanduynslager (https://github.com/pvdlg)", "type": "module", "ava": { "files": [ "test/**/*.test.js", "!test/integration.test.js" ], "timeout": "2m", "workerThreads": false }, "bugs": { "url": "https://github.com/semantic-release/git/issues" }, "contributors": [ "Stephan Bönnemann <stephan@boennemann.me> (http://boennemann.me)", "Gregor Martynus (https://twitter.com/gr2m)" ], "dependencies": { "@semantic-release/error": "^4.0.0", "aggregate-error": "^5.0.0", "debug": "^4.0.0", "dir-glob": "^3.0.0", "execa": "^10.0.0", "lodash-es": "^4.17.21", "micromatch": "^4.0.0", "p-reduce": "^3.0.0" }, "devDependencies": { "ava": "6.4.1", "c8": "10.1.3", "git-log-parser": "1.2.1", "lockfile-lint": "5.0.0", "ls-engines": "0.10.1", "npm-run-all2": "5.0.2", "prettier": "3.9.5", "publint": "0.3.21", "semantic-release": "25.0.8", "sinon": "21.1.2", "tempy": "3.2.0" }, "engines": { "node": "^22.22.2 || >=24.15" }, "exports": "./index.js", "files": [ "lib", "index.js" ], "homepage": "https://github.com/semantic-release/git", "keywords": [ "changelog", "commit", "conventional-changelog", "conventional-commits", "git", "release", "semantic-release", "version" ], "license": "MIT", "peerDependencies": { "semantic-release": ">=20.1.0" }, "publishConfig": { "access": "public", "provenance": true }, "repository": { "type": "git", "url": "https://github.com/semantic-release/git.git" }, "scripts": { "lint": "prettier --check \"{lib,test}/**/*.{js,json,ts}\" \"*.{md,json,js}\" \".github/**/*.yml\"", "lint:prettier": "prettier --check \"{lib,test}/**/*.{js,json,ts}\" \"*.{md,json,js}\" \".github/**/*.yml\"", "lint:prettier:fix": "prettier --write \"*.{js,json,md}\" \".github/**/*.{md,yml}\" \"{bin,lib,test}/**/*.js\"", "lint:lockfile": "lockfile-lint", "lint:engines": "ls-engines", "lint:publish": "publint --strict", "semantic-release": "semantic-release", "test": "npm-run-all --print-label --parallel lint:* --parallel test:*", "test:unit": "c8 ava --verbose", "test:integration": "ava --verbose --timeout=120s test/integration.test.js" }, "c8": { "include": [ "lib/**/*.js", "index.js" ], "reporter": [ "json", "text", "html" ], "all": true }, "lockfile-lint": { "path": "package-lock.json", "type": "npm", "validate-https": true, "allowed-hosts": [ "npm" ] }, "renovate": { "extends": [ "github>semantic-release/.github:renovate-config" ] } }