2020-08-26 01:36:04 +02:00
|
|
|
{
|
|
|
|
"name": "webhook-action",
|
2021-02-26 05:00:44 +01:00
|
|
|
"version": "2.1.0",
|
2020-08-26 01:36:04 +02: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 02:50:05 +02:00
|
|
|
"github",
|
2020-08-26 01:36:04 +02:00
|
|
|
"actions",
|
|
|
|
"node",
|
|
|
|
"webhook",
|
|
|
|
"action"
|
|
|
|
],
|
|
|
|
"author": "Joel Male",
|
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
2021-09-29 13:03:11 +02:00
|
|
|
"@actions/core": "^1.6.0",
|
2022-03-14 12:09:20 +01:00
|
|
|
"node-fetch": "^3.2.3"
|
2020-08-26 01:36:04 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-02-23 12:03:59 +01:00
|
|
|
"@types/jest": "^27.4.1",
|
2022-03-24 12:04:16 +01:00
|
|
|
"@types/node": "^17.0.23",
|
2022-03-22 12:03:35 +01:00
|
|
|
"@typescript-eslint/parser": "^5.16.0",
|
2022-02-14 12:05:18 +01:00
|
|
|
"@vercel/ncc": "^0.33.3",
|
2022-03-14 12:09:32 +01:00
|
|
|
"eslint": "^8.11.0",
|
2022-03-23 12:34:40 +01:00
|
|
|
"eslint-plugin-github": "^4.3.6",
|
2022-03-24 12:04:08 +01:00
|
|
|
"eslint-plugin-jest": "^26.1.3",
|
2021-02-26 04:58:33 +01:00
|
|
|
"https": "^1.0.0",
|
2021-04-15 07:42:49 +02:00
|
|
|
"js-yaml": "^4.1.0",
|
2022-03-16 12:03:34 +01:00
|
|
|
"prettier": "2.6.0",
|
2022-03-01 12:03:19 +01:00
|
|
|
"typescript": "^4.6.2"
|
2020-08-26 01:36:04 +02:00
|
|
|
}
|
|
|
|
}
|