2020-08-25 23:36:04 +00:00
|
|
|
{
|
|
|
|
"name": "webhook-action",
|
2021-02-26 04:00:44 +00:00
|
|
|
"version": "2.1.0",
|
2020-08-25 23:36:04 +00:00
|
|
|
"description": "Github Webhook Action",
|
|
|
|
"main": "dist/main.js",
|
|
|
|
"scripts": {
|
|
|
|
"build": "tsc",
|
|
|
|
"format": "prettier --write **/*.ts",
|
|
|
|
"lint": "eslint src/**/*.ts",
|
|
|
|
"package": "ncc build --source-map"
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/joelwmale/webhook-action.git"
|
|
|
|
},
|
|
|
|
"keywords": [
|
2020-08-26 00:50:05 +00:00
|
|
|
"github",
|
2020-08-25 23:36:04 +00:00
|
|
|
"actions",
|
|
|
|
"node",
|
|
|
|
"webhook",
|
|
|
|
"action"
|
|
|
|
],
|
|
|
|
"author": "Joel Male",
|
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
2021-09-29 11:03:11 +00:00
|
|
|
"@actions/core": "^1.6.0",
|
2022-03-14 11:09:20 +00:00
|
|
|
"node-fetch": "^3.2.3"
|
2020-08-25 23:36:04 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-02-23 11:03:59 +00:00
|
|
|
"@types/jest": "^27.4.1",
|
2022-03-24 11:04:16 +00:00
|
|
|
"@types/node": "^17.0.23",
|
2022-03-22 11:03:35 +00:00
|
|
|
"@typescript-eslint/parser": "^5.16.0",
|
2022-02-14 11:05:18 +00:00
|
|
|
"@vercel/ncc": "^0.33.3",
|
2022-03-28 11:03:38 +00:00
|
|
|
"eslint": "^8.12.0",
|
2022-03-23 11:34:40 +00:00
|
|
|
"eslint-plugin-github": "^4.3.6",
|
2022-03-24 11:04:08 +00:00
|
|
|
"eslint-plugin-jest": "^26.1.3",
|
2021-02-26 03:58:33 +00:00
|
|
|
"https": "^1.0.0",
|
2021-04-15 05:42:49 +00:00
|
|
|
"js-yaml": "^4.1.0",
|
2022-03-25 11:04:33 +00:00
|
|
|
"prettier": "2.6.1",
|
2022-03-25 11:03:13 +00:00
|
|
|
"typescript": "^4.6.3"
|
2020-08-25 23:36:04 +00:00
|
|
|
}
|
|
|
|
}
|