Files
github-releases-to-discord/package.json
T
SethCohen 0559b87ee8 feat(tests): add Jest configuration and comprehensive tests for utility functions in index.js to ensure functionality and reliability
chore(package): update @actions/github dependency to version 6.0.1 and add Jest as a dev dependency with a test script
2025-06-17 02:47:56 -04:00

36 lines
923 B
JSON

{
"name": "github-releases-to-discord",
"version": "1.18.0",
"description": "A GitHub Action that automatically sends a stylized Discord webhook of a GitHub Release description to a specified Discord channel.",
"type": "module",
"main": "index.js",
"keywords": [
"discord",
"github",
"release",
"action",
"release-to-discord",
"github-release-to-discord",
"webhook",
"github-action",
"changelog"
],
"author": "SethCohen",
"bugs": {
"url": "https://github.com/SethCohen/github-releases-to-discord/issues"
},
"homepage": "https://github.com/SethCohen/github-releases-to-discord#readme",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.1",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"jest": "^30.0.0"
},
"scripts": {
"test": "node --experimental-vm-modules node_modules/.bin/jest"
}
}