gpg/package.json

45 lines
1.2 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-05-06 18:14:43 -04:00
"cleanup-paths": "removeNPMAbsolutePaths ./ --force --fields _where _args",
"pre-checkin": "npm run format && npm run cleanup-paths && npm 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.2.3",
"@actions/exec": "^1.0.4",
"addressparser": "^1.0.1",
2020-05-04 14:06:27 -04:00
"openpgp": "^4.10.4"
2020-05-03 14:46:05 -04:00
},
"devDependencies": {
"@types/jest": "^25.2.2",
"@types/node": "^14.0.1",
"@types/openpgp": "^4.4.11",
2020-05-03 14:46:05 -04:00
"@zeit/ncc": "^0.22.1",
2020-05-03 15:08:31 -04:00
"jest": "^25.5.4",
"jest-circus": "^25.5.4",
"jest-runtime": "^25.5.4",
2020-05-03 14:46:05 -04:00
"prettier": "^2.0.5",
2020-05-06 18:14:43 -04:00
"removeNPMAbsolutePaths": "^2.0.0",
"ts-jest": "^25.5.1",
"typescript": "^3.9.2",
2020-05-03 14:46:05 -04:00
"typescript-formatter": "^7.2.2"
}
}