Files
action-gh-release/package.json
T

43 lines
1.1 KiB
JSON
Raw Normal View History

2019-09-09 17:10:07 +09:00
{
"name": "action-gh-release",
2024-03-11 09:44:32 -04:00
"version": "2.0.3",
2019-09-09 17:10:07 +09:00
"private": true,
"description": "GitHub Action for creating GitHub Releases",
"main": "lib/main.js",
"scripts": {
2020-01-05 18:00:23 -05:00
"build": "ncc build src/main.ts --minify",
2019-09-09 21:20:59 +09:00
"test": "jest",
"fmt": "prettier --write \"src/**/*.ts\" \"__tests__/**/*.ts\"",
"fmtcheck": "prettier --check \"src/**/*.ts\" \"__tests__/**/*.ts\""
2019-09-09 17:10:07 +09:00
},
"repository": {
"type": "git",
2021-11-15 01:22:05 -05:00
"url": "git+https://github.com/softprops/action-gh-release.git"
2019-09-09 17:10:07 +09:00
},
"keywords": [
"actions"
],
"author": "softprops",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@octokit/plugin-retry": "^4.0.3",
"@octokit/plugin-throttling": "^4.3.2",
"glob": "^8.0.3",
2024-03-08 22:55:14 +02:00
"mime": "^3.0.0"
2019-09-09 17:10:07 +09:00
},
"devDependencies": {
"@types/glob": "^8.0.0",
"@types/jest": "^29.2.3",
"@types/mime": "^3.0.1",
"@types/node": "^18.11.9",
"@vercel/ncc": "^0.34.0",
"jest": "^29.3.1",
"jest-circus": "^29.3.1",
2022-12-04 22:08:19 -05:00
"prettier": "2.8.0",
"ts-jest": "^29.0.3",
2022-11-21 02:04:09 -05:00
"typescript": "^4.9.3",
2019-09-09 21:20:59 +09:00
"typescript-formatter": "^7.2.2"
2019-09-09 17:10:07 +09:00
}
}