webhook-action/package.json

50 lines
1.4 KiB
JSON
Raw Normal View History

{
"name": "webhook-action",
2022-11-08 01:43:10 +00:00
"version": "2.2.0",
"description": "Github Webhook Action",
2022-11-10 12:22:24 +00:00
"main": "dist/index.js",
"scripts": {
2022-11-10 12:20:38 +00:00
"build": "tsc --build --clean && ncc build src/main.ts -o dist",
2022-11-10 12:40:17 +00:00
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
2022-11-10 12:40:17 +00: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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joelwmale/webhook-action.git"
},
"keywords": [
2020-08-26 00:50:05 +00:00
"github",
"actions",
"node",
"webhook",
"action"
],
"author": "Joel Male",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"node-fetch": "^3.2.10"
},
"devDependencies": {
2022-11-10 13:06:47 +00:00
"@babel/preset-env": "^7.20.2",
"@types/node": "^18.11.9",
"@typescript-eslint/parser": "^5.42.1",
"@vercel/ncc": "^0.34.0",
2022-11-10 13:06:47 +00:00
"babel-jest": "^29.3.1",
"eslint": "^8.27.0",
"eslint-plugin-github": "^4.4.1",
"https": "^1.0.0",
2022-11-10 13:06:47 +00:00
"jest": "^29.3.1",
"js-yaml": "^4.1.0",
"prettier": "2.7.1",
2022-11-10 11:11:32 +00:00
"semver": "^7.3.8",
2022-11-10 13:06:47 +00:00
"ts-jest": "^29.0.3",
2022-11-10 12:17:10 +00:00
"typescript": "^4.8.4",
"uuid": "^9.0.0"
}
}