mirror of
https://github.com/crazy-max/ghaction-import-gpg.git
synced 2024-11-05 21:25:50 -05:00
b58659b81e
Bumps [@actions/exec](https://github.com/actions/toolkit/tree/HEAD/packages/exec) from 1.1.0 to 1.1.1. - [Release notes](https://github.com/actions/toolkit/releases) - [Changelog](https://github.com/actions/toolkit/blob/main/packages/exec/RELEASES.md) - [Commits](https://github.com/actions/toolkit/commits/@actions/tool-cache@1.1.1/packages/exec) --- updated-dependencies: - dependency-name: "@actions/exec" dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
45 lines
1.2 KiB
JSON
45 lines
1.2 KiB
JSON
{
|
|
"name": "import-gpg",
|
|
"description": "GitHub Action to easily import a GPG key",
|
|
"main": "lib/main.js",
|
|
"scripts": {
|
|
"build": "ncc build src/main.ts --source-map --minify --license licenses.txt",
|
|
"lint": "eslint src/**/*.ts __tests__/**/*.ts",
|
|
"format": "eslint --fix src/**/*.ts __tests__/**/*.ts",
|
|
"test": "jest --coverage",
|
|
"all": "yarn run build && yarn run format && yarn test"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/crazy-max/ghaction-import-gpg.git"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"gpg",
|
|
"signing",
|
|
"git"
|
|
],
|
|
"author": "CrazyMax",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/core": "^1.6.0",
|
|
"@actions/exec": "^1.1.1",
|
|
"addressparser": "^1.0.1",
|
|
"openpgp": "^5.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^16.11.26",
|
|
"@typescript-eslint/eslint-plugin": "^5.14.0",
|
|
"@typescript-eslint/parser": "^5.14.0",
|
|
"@vercel/ncc": "^0.33.3",
|
|
"eslint": "^8.11.0",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-plugin-jest": "^26.1.1",
|
|
"eslint-plugin-prettier": "^4.0.0",
|
|
"jest": "^27.2.5",
|
|
"prettier": "^2.3.1",
|
|
"ts-jest": "^27.1.2",
|
|
"ts-node": "^10.7.0",
|
|
"typescript": "^4.4.4"
|
|
}
|
|
}
|