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": {
|
2022-05-16 13:04:05 +02:00
|
|
|
"@actions/core": "^1.8.2",
|
2022-04-28 13:03:10 +02:00
|
|
|
"node-fetch": "^3.2.4"
|
2020-08-26 01:36:04 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-05-12 13:03:46 +02:00
|
|
|
"@types/jest": "^27.5.1",
|
2022-06-01 13:39:21 +02:00
|
|
|
"@types/node": "^17.0.38",
|
2022-05-31 13:04:29 +02:00
|
|
|
"@typescript-eslint/parser": "^5.27.0",
|
2022-05-26 13:04:32 +02:00
|
|
|
"@vercel/ncc": "^0.34.0",
|
2022-05-23 13:03:44 +02:00
|
|
|
"eslint": "^8.16.0",
|
2022-03-23 12:34:40 +01:00
|
|
|
"eslint-plugin-github": "^4.3.6",
|
2022-05-31 13:04:36 +02:00
|
|
|
"eslint-plugin-jest": "^26.4.6",
|
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-04-04 13:03:22 +02:00
|
|
|
"prettier": "2.6.2",
|
2022-05-25 13:04:51 +02:00
|
|
|
"typescript": "^4.7.2"
|
2020-08-26 01:36:04 +02:00
|
|
|
}
|
|
|
|
}
|