mirror of
https://github.com/joelwmale/webhook-action.git
synced 2024-08-25 08:08:00 +00:00
52 lines
1.5 KiB
JSON
52 lines
1.5 KiB
JSON
{
|
|
"name": "webhook-action",
|
|
"version": "2.2.0",
|
|
"description": "Github Webhook Action",
|
|
"main": "dist/main.js",
|
|
"scripts": {
|
|
"build": "tsc && ncc build",
|
|
"format": "prettier --write '**/*.ts'",
|
|
"format-check": "prettier --check '**/*.ts'",
|
|
"lint": "eslint src/**/*.ts",
|
|
"package": "ncc build --source-map --license licenses.txt",
|
|
"test": "jest",
|
|
"all": "npm run build && npm run format && npm test && npm run lint && npm run package"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/joelwmale/webhook-action.git"
|
|
},
|
|
"keywords": [
|
|
"github",
|
|
"actions",
|
|
"node",
|
|
"webhook",
|
|
"action"
|
|
],
|
|
"author": "Joel Male",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/core": "^1.10.0",
|
|
"node-fetch": "^3.3.2"
|
|
},
|
|
"devDependencies": {
|
|
"@actions/github": "^6.0.0",
|
|
"@babel/preset-env": "^7.20.2",
|
|
"@types/node": "^18.19.26",
|
|
"@typescript-eslint/eslint-plugin": "^7.4.0",
|
|
"@typescript-eslint/parser": "^5.62.0",
|
|
"@vercel/ncc": "^0.38.0",
|
|
"babel-jest": "^29.3.1",
|
|
"eslint": "^8.57.0",
|
|
"eslint-plugin-github": "^4.10.2",
|
|
"https": "^1.0.0",
|
|
"jest": "^29.7.0",
|
|
"js-yaml": "^4.1.0",
|
|
"prettier": "3.2.5",
|
|
"semver": "^7.6.0",
|
|
"ts-jest": "^29.0.3",
|
|
"typescript": "^5.4.3",
|
|
"uuid": "^9.0.0"
|
|
}
|
|
}
|