2020-08-25 23:36:04 +00:00
|
|
|
{
|
|
|
|
"name": "webhook-action",
|
2024-03-28 03:05:39 +00:00
|
|
|
"version": "2.3.0",
|
2020-08-25 23:36:04 +00:00
|
|
|
"description": "Github Webhook Action",
|
2024-03-28 02:33:51 +00:00
|
|
|
"main": "dist/main.js",
|
2020-08-25 23:36:04 +00:00
|
|
|
"scripts": {
|
2024-03-28 03:00:21 +00:00
|
|
|
"build": "tsc && ncc build --license licenses.txt",
|
2022-11-10 12:40:17 +00:00
|
|
|
"format": "prettier --write '**/*.ts'",
|
|
|
|
"format-check": "prettier --check '**/*.ts'",
|
2020-08-25 23:36:04 +00:00
|
|
|
"lint": "eslint src/**/*.ts",
|
2022-11-10 12:40:17 +00:00
|
|
|
"test": "jest",
|
2024-03-28 03:00:21 +00:00
|
|
|
"all": "npm run format && npm run lint && npm run test&& npm run build"
|
2020-08-25 23:36:04 +00:00
|
|
|
},
|
|
|
|
"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": {
|
2024-03-28 02:37:39 +00:00
|
|
|
"@actions/core": "^1.10.1",
|
|
|
|
"@actions/github": "^6.0.0",
|
2024-03-28 02:43:14 +00:00
|
|
|
"@vercel/ncc": "^0.38.1",
|
2023-07-31 11:58:03 +00:00
|
|
|
"node-fetch": "^3.3.2"
|
2020-08-25 23:36:04 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-11-10 13:06:47 +00:00
|
|
|
"@babel/preset-env": "^7.20.2",
|
2024-03-28 02:00:41 +00:00
|
|
|
"@types/node": "^18.19.26",
|
2024-03-28 02:25:32 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^7.4.0",
|
|
|
|
"@typescript-eslint/parser": "^5.62.0",
|
2022-11-10 13:06:47 +00:00
|
|
|
"babel-jest": "^29.3.1",
|
2024-03-28 02:25:32 +00:00
|
|
|
"eslint": "^8.57.0",
|
2024-03-28 01:45:28 +00:00
|
|
|
"eslint-plugin-github": "^4.10.2",
|
2024-03-28 03:00:21 +00:00
|
|
|
"eslint-plugin-jest": "^27.9.0",
|
2021-02-26 03:58:33 +00:00
|
|
|
"https": "^1.0.0",
|
2024-03-25 11:45:31 +00:00
|
|
|
"jest": "^29.7.0",
|
2021-04-15 05:42:49 +00:00
|
|
|
"js-yaml": "^4.1.0",
|
2024-03-25 11:44:09 +00:00
|
|
|
"prettier": "3.2.5",
|
2024-03-28 01:18:59 +00:00
|
|
|
"semver": "^7.6.0",
|
2022-11-10 13:06:47 +00:00
|
|
|
"ts-jest": "^29.0.3",
|
2024-03-28 02:25:32 +00:00
|
|
|
"typescript": "^5.4.3",
|
2022-11-10 12:17:10 +00:00
|
|
|
"uuid": "^9.0.0"
|
2020-08-25 23:36:04 +00:00
|
|
|
}
|
|
|
|
}
|