gpg/package.json

43 lines
1 KiB
JSON
Raw Normal View History

2020-05-03 14:46:05 -04:00
{
"name": "import-gpg",
"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": {
"@actions/core": "^1.5.0",
"@actions/exec": "^1.1.0",
"addressparser": "^1.0.1",
"openpgp": "^5.0.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
}