Files
add-and-commit/package.json
Federico Grandi cb9365b122 chore: switch to GTS for linting (#636)
* fix: switch over to gts

* fix: add debug message for input arrays

* fix: fix input array parsing
2024-03-26 14:41:25 +01:00

56 lines
1.4 KiB
JSON

{
"name": "add-and-commit",
"version": "9.1.4",
"private": true,
"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": "echo \"Error: no test specified\" && exit 1",
"clean": "gts clean",
"fix": "gts fix",
"pretest": "npm run compile",
"posttest": "npm run lint"
},
"dependencies": {
"@actions/core": "^1.10.1",
"actions-toolkit": "github:EndBug/actions-toolkit#core-actions",
"js-yaml": "^4.1.0",
"simple-git": "^3.18.0",
"string-argv": "^0.3.2"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "20.8.2",
"@vercel/ncc": "^0.38.1",
"all-contributors-cli": "^6.26.1",
"eslint-config-prettier": "^9.1.0",
"gts": "^5.2.0",
"husky": "^9.0.11",
"typescript": "~5.2.0"
},
"engines": {
"node": ">=20"
},
"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"
}