gpg/package.json
CrazyMax e8a90f2bec
OpenPGP.js v5 (#78)
* Bump path-parse from 1.0.6 to 1.0.7 (#104)

Bumps [path-parse](https://github.com/jbgutierrez/path-parse) from 1.0.6 to 1.0.7.
- [Release notes](https://github.com/jbgutierrez/path-parse/releases)
- [Commits](https://github.com/jbgutierrez/path-parse/commits/v1.0.7)

---
updated-dependencies:
- dependency-name: path-parse
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* OpenPGP.js 5.0.0

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: CrazyMax <crazy-max@users.noreply.github.com>
2021-09-05 01:00:24 +02:00

42 lines
1 KiB
JSON

{
"name": "import-gpg",
"description": "GitHub Action to easily import a GPG key",
"main": "lib/main.js",
"scripts": {
"build": "tsc && ncc build",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"test": "jest --coverage",
"pre-checkin": "yarn run format && yarn run build"
},
"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.4.0",
"@actions/exec": "^1.1.0",
"addressparser": "^1.0.1",
"openpgp": "^5.0.0"
},
"devDependencies": {
"@types/jest": "^26.0.14",
"@types/node": "^14.11.2",
"@vercel/ncc": "^0.24.1",
"jest": "^26.0.1",
"jest-circus": "^26.0.1",
"jest-runtime": "^26.0.1",
"prettier": "^2.1.2",
"ts-jest": "^26.4.1",
"typescript": "^4.0.3",
"typescript-formatter": "^7.2.2"
}
}