-
Notifications
You must be signed in to change notification settings - Fork 149
/
package.json
63 lines (63 loc) · 1.84 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
{
"name": "slack-github-action",
"version": "2.0.0",
"description": "The official Slack Github Action. Use this to send data into your Slack workspace",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "ncc build src/index.js --license licenses.txt --source-map",
"check": "tsc --noemit --module es2022 --project ./jsconfig.json",
"dev": "act public --eventpath .github/resources/.actions/event.json --secret-file .github/resources/.env --platform ubuntu-latest=node:20-buster --container-architecture linux/amd64",
"lint:fix": "biome check --write",
"lint": "biome check",
"test": "c8 mocha test/*.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/slackapi/slack-github-action.git"
},
"keywords": [
"slack",
"github",
"action",
"workflow"
],
"author": "Slack Technologies, LLC",
"license": "MIT",
"bugs": {
"url": "https://github.com/slackapi/slack-github-action/issues"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.2.0"
},
"homepage": "https://github.com/slackapi/slack-github-action#readme",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@slack/web-api": "^7.7.0",
"axios": "^1.7.7",
"axios-retry": "^4.5.0",
"flat": "^6.0.1",
"https-proxy-agent": "^7.0.5",
"js-yaml": "^4.1.0",
"markup-js": "^1.5.21"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/chai": "^5.0.1",
"@types/flat": "^5.0.5",
"@types/js-yaml": "^4.0.9",
"@types/markup-js": "^1.5.0",
"@types/mocha": "^10.0.9",
"@types/node": "^20.17.6",
"@types/sinon": "^17.0.3",
"@vercel/ncc": "^0.38.2",
"c8": "^10.1.2",
"chai": "^5.1.2",
"mocha": "^10.8.2",
"mocha-suppress-logs": "^0.5.1",
"sinon": "^19.0.2",
"typescript": "^5.6.3"
}
}