mirror of
https://github.com/EndBug/add-and-commit.git
synced 2026-08-29 08:02:18 -05:00
* chore(deps): bump js-yaml from 5.2.3 to 5.3.0 Bumps [js-yaml](https://github.com/nodeca/js-yaml) from 5.2.3 to 5.3.0. - [Changelog](https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md) - [Commits](https://github.com/nodeca/js-yaml/compare/5.2.3...5.3.0) --- updated-dependencies: - dependency-name: js-yaml dependency-version: 5.3.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * chore: rebuild lib --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
59 lines
1.5 KiB
JSON
59 lines
1.5 KiB
JSON
{
|
|
"name": "add-and-commit",
|
|
"version": "11.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"description": "Add & commit files from a path directly from GitHub Actions",
|
|
"main": "lib/index.js",
|
|
"scripts": {
|
|
"prebuild": "npm run clean",
|
|
"build": "ncc build src/main.ts --minify --out lib",
|
|
"lint": "gts lint",
|
|
"prepare": "husky",
|
|
"test": "NODE_OPTIONS='--experimental-vm-modules' jest && npm run lint",
|
|
"clean": "gts clean",
|
|
"fix": "gts fix"
|
|
},
|
|
"dependencies": {
|
|
"@actions/core": "^3.0.1",
|
|
"@actions/github": "^9.1.1",
|
|
"js-yaml": "^5.3.0",
|
|
"simple-git": "^3.36.0",
|
|
"string-argv": "^0.3.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^30.0.0",
|
|
"@types/js-yaml": "^4.0.9",
|
|
"@types/node": "24.12.0",
|
|
"@vercel/ncc": "^0.44.1",
|
|
"all-contributors-cli": "^6.26.1",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"eslint-plugin-prettier": "^5.5.6",
|
|
"gts": "^6.0.2",
|
|
"husky": "^9.1.7",
|
|
"jest": "^30.4.2",
|
|
"ts-jest": "^29.4.12",
|
|
"typescript": "~6.0.2"
|
|
},
|
|
"engines": {
|
|
"node": ">=24"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/EndBug/add-and-commit.git"
|
|
},
|
|
"keywords": [
|
|
"github",
|
|
"action",
|
|
"version",
|
|
"npm",
|
|
"node"
|
|
],
|
|
"author": "Federico Grandi <fgrandi30@gmail.com>",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/EndBug/add-and-commit/issues"
|
|
},
|
|
"homepage": "https://github.com/EndBug/add-and-commit#readme"
|
|
}
|