webhook/package.json
dependabot[bot] daa9d1af3b
build(deps-dev): bump jest from 29.3.1 to 29.7.0
Bumps [jest](https://github.com/jestjs/jest/tree/HEAD/packages/jest) from 29.3.1 to 29.7.0.
- [Release notes](https://github.com/jestjs/jest/releases)
- [Changelog](https://github.com/jestjs/jest/blob/main/CHANGELOG.md)
- [Commits](https://github.com/jestjs/jest/commits/v29.7.0/packages/jest)

---
updated-dependencies:
- dependency-name: jest
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-03-25 11:45:31 +00:00

49 lines
1.4 KiB
JSON

{
"name": "webhook-action",
"version": "2.2.0",
"description": "Github Webhook Action",
"main": "dist/index.js",
"scripts": {
"build": "tsc --build --clean && ncc build src/main.ts -o dist",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"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": [
"github",
"actions",
"node",
"webhook",
"action"
],
"author": "Joel Male",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"node-fetch": "^3.2.10"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@types/node": "^18.11.9",
"@typescript-eslint/parser": "^5.42.1",
"@vercel/ncc": "^0.38.0",
"babel-jest": "^29.3.1",
"eslint": "^8.27.0",
"eslint-plugin-github": "^4.4.1",
"https": "^1.0.0",
"jest": "^29.7.0",
"js-yaml": "^4.1.0",
"prettier": "2.7.1",
"semver": "^7.3.8",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4",
"uuid": "^9.0.0"
}
}