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-06-08 05:20:36 +00:00
|
|
|
"@actions/core": "^1.4.0",
|
2020-09-07 05:50:00 +00:00
|
|
|
"node-fetch": "^2.6.1"
|
2020-08-25 23:36:04 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-07-07 11:02:42 +00:00
|
|
|
"@types/jest": "^26.0.24",
|
2021-07-19 11:03:21 +00:00
|
|
|
"@types/node": "^16.3.3",
|
2021-07-20 11:02:16 +00:00
|
|
|
"@typescript-eslint/parser": "^4.28.4",
|
2021-07-19 11:02:41 +00:00
|
|
|
"@vercel/ncc": "^0.29.0",
|
2021-07-19 11:05:26 +00:00
|
|
|
"eslint": "^7.31.0",
|
2021-07-19 11:02:53 +00:00
|
|
|
"eslint-plugin-github": "^4.1.5",
|
2021-04-26 06:35:22 +00:00
|
|
|
"eslint-plugin-jest": "^24.3.6",
|
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",
|
2021-06-28 11:03:19 +00:00
|
|
|
"prettier": "2.3.2",
|
2021-07-01 11:03:12 +00:00
|
|
|
"typescript": "^4.3.5"
|
2020-08-25 23:36:04 +00:00
|
|
|
}
|
|
|
|
}
|