57 lines
1.6 KiB
JSON
57 lines
1.6 KiB
JSON
{
|
|
"name": "add-and-commit",
|
|
"version": "9.1.0",
|
|
"private": true,
|
|
"description": "Add & commit files from a path directly from GitHub Actions",
|
|
"main": "lib/index.js",
|
|
"scripts": {
|
|
"build": "ncc build src/main.ts --minify --out lib",
|
|
"watch": "ncc build src/main.ts --watch --out lib",
|
|
"lint": "eslint --ext .ts src",
|
|
"lint:fix": "eslint --ext .ts --fix src",
|
|
"changelog": "ts-node scripts/changelog.ts && npm i",
|
|
"prepare": "husky install",
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"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",
|
|
"dependencies": {
|
|
"@actions/core": "^1.9.1",
|
|
"actions-toolkit": "github:EndBug/actions-toolkit#core-actions",
|
|
"js-yaml": "^4.1.0",
|
|
"simple-git": "^3.7.1",
|
|
"string-argv": "^0.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/js-yaml": "^4.0.5",
|
|
"@types/node": "^12.12.54",
|
|
"@typescript-eslint/eslint-plugin": "^4.33.0",
|
|
"@typescript-eslint/parser": "^4.33.0",
|
|
"@vercel/ncc": "^0.34.0",
|
|
"all-contributors-cli": "^6.20.0",
|
|
"eslint": "^7.32.0",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"husky": "^8.0.1",
|
|
"prettier": "^2.7.1",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "^4.7.4",
|
|
"yamljs": "^0.3.0"
|
|
}
|
|
}
|