2020-08-26 01:36:04 +02:00
|
|
|
{
|
|
|
|
"name": "webhook-action",
|
2022-11-08 02:43:10 +01:00
|
|
|
"version": "2.2.0",
|
2020-08-26 01:36:04 +02:00
|
|
|
"description": "Github Webhook Action",
|
2022-11-10 13:22:24 +01:00
|
|
|
"main": "dist/index.js",
|
2020-08-26 01:36:04 +02:00
|
|
|
"scripts": {
|
2022-11-10 13:20:38 +01:00
|
|
|
"build": "tsc --build --clean && ncc build src/main.ts -o dist",
|
2022-11-10 13:40:17 +01:00
|
|
|
"format": "prettier --write '**/*.ts'",
|
|
|
|
"format-check": "prettier --check '**/*.ts'",
|
2020-08-26 01:36:04 +02:00
|
|
|
"lint": "eslint src/**/*.ts",
|
2022-11-10 13:40:17 +01:00
|
|
|
"package": "ncc build --source-map --license licenses.txt",
|
|
|
|
"test": "jest",
|
|
|
|
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
|
2020-08-26 01:36:04 +02:00
|
|
|
},
|
|
|
|
"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-09-30 13:07:31 +02:00
|
|
|
"@actions/core": "^1.10.0",
|
2023-07-31 13:58:03 +02:00
|
|
|
"node-fetch": "^3.3.2"
|
2020-08-26 01:36:04 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-03-28 03:00:41 +01:00
|
|
|
"@actions/github": "^6.0.0",
|
2022-11-10 14:06:47 +01:00
|
|
|
"@babel/preset-env": "^7.20.2",
|
2024-03-28 03:00:41 +01:00
|
|
|
"@types/node": "^18.19.26",
|
2022-11-08 12:07:03 +01:00
|
|
|
"@typescript-eslint/parser": "^5.42.1",
|
2023-09-11 13:04:58 +02:00
|
|
|
"@vercel/ncc": "^0.38.0",
|
2022-11-10 14:06:47 +01:00
|
|
|
"babel-jest": "^29.3.1",
|
2022-11-08 12:05:35 +01:00
|
|
|
"eslint": "^8.27.0",
|
2024-03-28 02:45:28 +01:00
|
|
|
"eslint-plugin-github": "^4.10.2",
|
2021-02-26 04:58:33 +01:00
|
|
|
"https": "^1.0.0",
|
2024-03-25 12:45:31 +01:00
|
|
|
"jest": "^29.7.0",
|
2021-04-15 07:42:49 +02:00
|
|
|
"js-yaml": "^4.1.0",
|
2024-03-25 12:44:09 +01:00
|
|
|
"prettier": "3.2.5",
|
2024-03-28 02:18:59 +01:00
|
|
|
"semver": "^7.6.0",
|
2022-11-10 14:06:47 +01:00
|
|
|
"ts-jest": "^29.0.3",
|
2022-11-10 13:17:10 +01:00
|
|
|
"typescript": "^4.8.4",
|
|
|
|
"uuid": "^9.0.0"
|
2020-08-26 01:36:04 +02:00
|
|
|
}
|
|
|
|
}
|