2020-05-03 20:46:05 +02:00
|
|
|
{
|
|
|
|
"name": "import-gpg",
|
2020-05-07 20:42:27 +02:00
|
|
|
"description": "GitHub Action to easily import a GPG key",
|
2020-05-03 20:46:05 +02: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 22:21:27 +02:00
|
|
|
"pre-checkin": "yarn run format && yarn run build"
|
2020-05-03 20:46:05 +02: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": {
|
2020-09-28 19:54:51 +00:00
|
|
|
"@actions/core": "^1.2.6",
|
2020-05-03 20:46:05 +02:00
|
|
|
"@actions/exec": "^1.0.4",
|
2020-05-05 20:01:45 +02:00
|
|
|
"addressparser": "^1.0.1",
|
2021-01-25 08:48:13 +00:00
|
|
|
"openpgp": "^4.10.10"
|
2020-05-03 20:46:05 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-10-01 20:00:57 +02:00
|
|
|
"@types/jest": "^26.0.14",
|
|
|
|
"@types/node": "^14.11.2",
|
|
|
|
"@types/openpgp": "^4.4.14",
|
|
|
|
"@vercel/ncc": "^0.24.1",
|
2020-06-10 22:21:27 +02:00
|
|
|
"jest": "^26.0.1",
|
|
|
|
"jest-circus": "^26.0.1",
|
|
|
|
"jest-runtime": "^26.0.1",
|
2020-10-01 20:00:57 +02:00
|
|
|
"prettier": "^2.1.2",
|
|
|
|
"ts-jest": "^26.4.1",
|
|
|
|
"typescript": "^4.0.3",
|
2020-05-03 20:46:05 +02:00
|
|
|
"typescript-formatter": "^7.2.2"
|
|
|
|
}
|
2020-05-18 15:15:43 +00:00
|
|
|
}
|