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": {
|
2022-06-16 11:04:26 +00:00
|
|
|
"@actions/core": "^1.9.0",
|
2022-06-09 11:03:10 +00:00
|
|
|
"node-fetch": "^3.2.6"
|
2020-08-25 23:36:04 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-07-01 11:10:02 +00:00
|
|
|
"@types/jest": "^28.1.4",
|
2022-07-04 11:04:26 +00:00
|
|
|
"@types/node": "^18.0.1",
|
2022-06-28 11:08:59 +00:00
|
|
|
"@typescript-eslint/parser": "^5.30.0",
|
2022-05-26 11:04:32 +00:00
|
|
|
"@vercel/ncc": "^0.34.0",
|
2022-07-04 11:04:48 +00:00
|
|
|
"eslint": "^8.19.0",
|
2022-03-23 11:34:40 +00:00
|
|
|
"eslint-plugin-github": "^4.3.6",
|
2022-06-06 11:04:34 +00:00
|
|
|
"eslint-plugin-jest": "^26.5.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-06-16 11:04:20 +00:00
|
|
|
"prettier": "2.7.1",
|
2022-06-20 11:09:27 +00:00
|
|
|
"typescript": "^4.7.4"
|
2020-08-25 23:36:04 +00:00
|
|
|
}
|
|
|
|
}
|