-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.76 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@krauters/github-notifier",
"description": "GitHub Notifier by Krauters – Post Open Pull Requests to Slack",
"version": "0.14.0",
"author": "Colten Krauter <coltenkrauter>",
"type": "module",
"homepage": "https://buymeacoffee.com/coltenkrauter",
"repository": {
"type": "git",
"url": "git+https://github.com/krauters/github-notifier.git"
},
"keywords": [
"slack",
"notifications",
"action",
"node",
"typescript"
],
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=20"
},
"scripts": {
"all": "npm run test && npm run package",
"bundle:watch": "npm run bundle -- --watch",
"bundle": "npx ncc build src/index.ts -o dist --source-map",
"fix": "npm run lint -- --fix",
"lint": "npx eslint src/**",
"prepare": "husky || true",
"test": "npm run lint",
"upgrade:all": "npx npm-check-updates -u && npm install"
},
"license": "ISC",
"dependencies": {
"@actions/core": "1.11.1",
"@actions/github": "6.0.0",
"@krauters/environment": "^0.2.1",
"@krauters/logger": "^0.3.2",
"@krauters/structures": "^1.0.2",
"@krauters/utils": "^1.0.0",
"@octokit/rest": "21.0.2",
"@octokit/types": "13.6.1",
"@slack/web-api": "7.7.0",
"simple-git": "^3.27.0"
},
"devDependencies": {
"@krauters/eslint-config": "^1.4.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.0",
"@vercel/ncc": "^0.38.2",
"husky": "9.1.6",
"jest": "^29.7.0",
"make-coverage-badge": "^1.2.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0"
},
"bugs": {
"url": "https://github.com/krauters/github-notifier/issues/new?title=%5BBUG%5D+Brief+Description&template=bug_report.md"
}
}