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",
|
2023-05-06 11:17:46 -04:00
|
|
|
"main": "src/main.ts",
|
2020-05-03 14:46:05 -04:00
|
|
|
"scripts": {
|
2023-05-06 11:17:46 -04:00
|
|
|
"build": "ncc build --source-map --minify --license licenses.txt",
|
2022-03-21 03:35:20 -04:00
|
|
|
"lint": "eslint src/**/*.ts __tests__/**/*.ts",
|
|
|
|
"format": "eslint --fix src/**/*.ts __tests__/**/*.ts",
|
2023-05-06 11:17:46 -04:00
|
|
|
"test": "jest --coverage"
|
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",
|
2023-09-09 21:36:34 -04:00
|
|
|
"packageManager": "yarn@3.6.3",
|
2020-05-03 14:46:05 -04:00
|
|
|
"dependencies": {
|
2022-09-30 00:09:02 -04:00
|
|
|
"@actions/core": "^1.10.0",
|
2022-03-21 05:00:52 -04:00
|
|
|
"@actions/exec": "^1.1.1",
|
2020-05-05 14:01:45 -04:00
|
|
|
"addressparser": "^1.0.1",
|
2023-08-29 13:41:08 -04:00
|
|
|
"openpgp": "^5.10.1"
|
2020-05-03 14:46:05 -04:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-09-09 21:37:02 -04:00
|
|
|
"@types/node": "^20.6.0",
|
2023-05-06 11:28:35 -04:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.59.2",
|
|
|
|
"@typescript-eslint/parser": "^5.59.2",
|
|
|
|
"@vercel/ncc": "^0.36.1",
|
|
|
|
"eslint": "^8.40.0",
|
|
|
|
"eslint-config-prettier": "^8.8.0",
|
|
|
|
"eslint-plugin-jest": "^27.2.1",
|
|
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
|
|
"jest": "^29.5.0",
|
|
|
|
"prettier": "^2.8.8",
|
|
|
|
"ts-jest": "^29.1.0",
|
|
|
|
"ts-node": "^10.9.1",
|
|
|
|
"typescript": "^4.9.5"
|
2020-05-03 14:46:05 -04:00
|
|
|
}
|
2020-05-18 11:15:43 -04:00
|
|
|
}
|