2020-08-25 23:36:04 +00:00
|
|
|
{
|
|
|
|
"name": "webhook-action",
|
2020-08-26 00:50:05 +00:00
|
|
|
"version": "2.0.2",
|
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": {
|
2020-09-24 06:17:51 +00:00
|
|
|
"@actions/core": "^1.2.6",
|
2020-09-07 05:50:00 +00:00
|
|
|
"node-fetch": "^2.6.1"
|
2020-08-25 23:36:04 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-01-08 06:03:07 +00:00
|
|
|
"@types/jest": "^26.0.20",
|
2021-02-22 06:32:59 +00:00
|
|
|
"@types/node": "^14.14.31",
|
2021-02-23 05:47:54 +00:00
|
|
|
"@typescript-eslint/parser": "^4.15.2",
|
2021-01-12 06:07:45 +00:00
|
|
|
"@vercel/ncc": "^0.27.0",
|
2021-02-15 06:28:22 +00:00
|
|
|
"eslint": "^7.20.0",
|
2020-08-25 23:36:04 +00:00
|
|
|
"eslint-plugin-github": "^4.1.1",
|
2021-02-17 05:47:49 +00:00
|
|
|
"eslint-plugin-jest": "^24.1.5",
|
2021-02-26 03:58:33 +00:00
|
|
|
"https": "^1.0.0",
|
2021-01-04 07:05:57 +00:00
|
|
|
"js-yaml": "^4.0.0",
|
2020-11-30 07:06:08 +00:00
|
|
|
"prettier": "2.2.1",
|
2021-02-24 05:46:46 +00:00
|
|
|
"typescript": "^4.2.2"
|
2020-08-25 23:36:04 +00:00
|
|
|
}
|
|
|
|
}
|