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-06-09 13:03:10 +02:00
|
|
|
"node-fetch": "^3.2.6"
|
2020-08-26 01:36:04 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-06-06 13:08:28 +02:00
|
|
|
"@types/jest": "^28.1.1",
|
2022-06-13 13:03:56 +02:00
|
|
|
"@types/node": "^17.0.42",
|
2022-06-14 13:05:12 +02:00
|
|
|
"@typescript-eslint/parser": "^5.28.0",
|
2022-05-26 13:04:32 +02:00
|
|
|
"@vercel/ncc": "^0.34.0",
|
2022-06-06 13:04:47 +02:00
|
|
|
"eslint": "^8.17.0",
|
2022-03-23 12:34:40 +01:00
|
|
|
"eslint-plugin-github": "^4.3.6",
|
2022-06-06 13:04:34 +02:00
|
|
|
"eslint-plugin-jest": "^26.5.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-06-14 13:05:28 +02:00
|
|
|
"prettier": "2.7.0",
|
2022-06-06 13:04:21 +02:00
|
|
|
"typescript": "^4.7.3"
|
2020-08-26 01:36:04 +02:00
|
|
|
}
|
|
|
|
}
|