2020-05-03 14:46:05 -04:00
|
|
|
{
|
|
|
|
"name": "import-gpg",
|
2020-05-07 14:42:27 -04:00
|
|
|
"description": "GitHub Action to easily import a GPG key",
|
2020-05-03 14:46:05 -04:00
|
|
|
"main": "lib/main.js",
|
|
|
|
"scripts": {
|
|
|
|
"build": "tsc && ncc build",
|
|
|
|
"format": "prettier --write **/*.ts",
|
|
|
|
"format-check": "prettier --check **/*.ts",
|
|
|
|
"test": "jest --coverage",
|
2020-06-10 16:21:27 -04:00
|
|
|
"pre-checkin": "yarn run format && yarn run build"
|
2020-05-03 14:46:05 -04:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/crazy-max/ghaction-import-gpg.git"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"actions",
|
|
|
|
"gpg",
|
|
|
|
"signing",
|
|
|
|
"git"
|
|
|
|
],
|
|
|
|
"author": "CrazyMax",
|
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
2021-10-15 08:08:03 -04:00
|
|
|
"@actions/core": "^1.6.0",
|
2021-08-10 02:31:09 -04:00
|
|
|
"@actions/exec": "^1.1.0",
|
2020-05-05 14:01:45 -04:00
|
|
|
"addressparser": "^1.0.1",
|
2022-02-12 13:02:39 -05:00
|
|
|
"openpgp": "^5.1.0"
|
2020-05-03 14:46:05 -04:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-10-01 14:00:57 -04:00
|
|
|
"@types/jest": "^26.0.14",
|
|
|
|
"@types/node": "^14.11.2",
|
|
|
|
"@vercel/ncc": "^0.24.1",
|
2020-06-10 16:21:27 -04:00
|
|
|
"jest": "^26.0.1",
|
|
|
|
"jest-circus": "^26.0.1",
|
|
|
|
"jest-runtime": "^26.0.1",
|
2020-10-01 14:00:57 -04:00
|
|
|
"prettier": "^2.1.2",
|
|
|
|
"ts-jest": "^26.4.1",
|
|
|
|
"typescript": "^4.0.3",
|
2020-05-03 14:46:05 -04:00
|
|
|
"typescript-formatter": "^7.2.2"
|
|
|
|
}
|
2020-05-18 11:15:43 -04:00
|
|
|
}
|