-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.65 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "github-notifications-slack-forwarder",
"description": "Forwards filtered GitHub notifications to a Slack direct message or channel from a schedule GitHub action",
"exports": {
"./src/run-local": "./dist/run-local.js",
"./src/run-action": "./dist/run-action.js"
},
"engines": {
"node": ">=18"
},
"scripts": {
"start": "ts-node src/run-local.ts",
"start-packaged": "node dist/local/index.js",
"build": "tsc",
"package-local": "ncc build build/run-local.js --source-map --license licenses.txt --out dist/local",
"package-action": "ncc build build/run-action.js --source-map --license licenses.txt --out dist/action",
"build-and-package": "npm run build && npm run package-local && npm run package-action",
"stage-packages": "git add dist",
"lint": "prettier --check \"*.{ts,json,md,yml}\"",
"lint:fix": "prettier --write \"*.{ts,json,md,yml}\"",
"test": "c8 ava src",
"manual-test": "ts-node test/manual-test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ebonsignori/github-notifications-slack-forwarder.git"
},
"keywords": [
"Github",
"Notifications",
"Slack",
"Filter"
],
"author": "Evan Bonsignori",
"license": "ISC",
"bugs": {
"url": "https://github.com/Ebonsignori/github-notifications-slack-forwarder/issues"
},
"homepage": "https://github.com/Ebonsignori/github-notifications-slack-forwarder#readme",
"dependencies": {
"@actions/artifact": "^1.1.1",
"@actions/core": "^1.10.0",
"@octokit/plugin-throttling": "^6.1.0",
"@slack/web-api": "^6.7.2",
"cron-parser": "^4.5.0",
"dayjs": "^1.11.8",
"js-yaml": "^4.1.0",
"octokit": "^2.1.0",
"webex": "^2.55.0"
},
"devDependencies": {
"@ava/typescript": "^3.0.1",
"@octokit/types": "^6.40.0",
"@types/sinon": "^10.0.13",
"@vercel/ncc": "^0.34.0",
"ava": "^4.3.1",
"c8": "^7.12.0",
"mockdate": "^3.0.5",
"pre-commit": "^1.2.2",
"prettier": "^2.7.1",
"sinon": "^14.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"ava": {
"nodeArguments": [
"--experimental-specifier-resolution=node"
],
"typescript": {
"compile": "tsc",
"rewritePaths": {
"src/": "build/"
}
}
},
"release": {
"branches": [
"+([0-9]).x",
"main",
{
"name": "beta",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"semantic-release-plugin-github-breaking-version-tag",
"@semantic-release/github"
]
},
"pre-commit": [
"lint:fix",
"test"
]
}