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-09-09 21:38:53 -04:00
|
|
|
"build": "ncc build src/main.ts --source-map --minify --license licenses.txt",
|
|
|
|
"lint": "yarn run prettier && yarn run eslint",
|
|
|
|
"format": "yarn run prettier:fix && yarn run eslint:fix",
|
|
|
|
"eslint": "eslint --max-warnings=0 .",
|
|
|
|
"eslint:fix": "eslint --fix .",
|
|
|
|
"prettier": "prettier --check \"./**/*.ts\"",
|
|
|
|
"prettier:fix": "prettier --write \"./**/*.ts\"",
|
|
|
|
"test": "jest",
|
|
|
|
"all": "yarn run build && yarn run format && yarn test"
|
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-10-26 01:27:05 -04:00
|
|
|
"openpgp": "^5.11.0"
|
2020-05-03 14:46:05 -04:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-09-09 21:37:02 -04:00
|
|
|
"@types/node": "^20.6.0",
|
2023-09-09 21:38:53 -04:00
|
|
|
"@typescript-eslint/eslint-plugin": "^6.6.0",
|
|
|
|
"@typescript-eslint/parser": "^6.6.0",
|
|
|
|
"@vercel/ncc": "^0.38.0",
|
|
|
|
"eslint": "^8.49.0",
|
|
|
|
"eslint-config-prettier": "^9.0.0",
|
|
|
|
"eslint-plugin-jest": "^27.2.3",
|
|
|
|
"eslint-plugin-prettier": "^5.0.0",
|
|
|
|
"jest": "^29.6.4",
|
|
|
|
"prettier": "^3.0.3",
|
|
|
|
"ts-jest": "^29.1.1",
|
2023-05-06 11:28:35 -04:00
|
|
|
"ts-node": "^10.9.1",
|
2023-09-09 21:38:53 -04:00
|
|
|
"typescript": "^5.2.2"
|
2020-05-03 14:46:05 -04:00
|
|
|
}
|
2020-05-18 11:15:43 -04:00
|
|
|
}
|