-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.65 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.65 KB
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
{
"name": "slack",
"version": "2.1.0",
"private": true,
"description": "Notify Slack of GitHub Actions job and step status.",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check --loglevel debug '**/*.ts'",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint --fix src/**/*.ts",
"package": "esbuild src/main.ts --bundle --platform=node --target=node24 --format=cjs --outfile=dist/index.js --sourcemap --legal-comments=linked",
"package:test": "node dist/index.js",
"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/act10ns/slack.git"
},
"keywords": [
"actions",
"slack",
"notify"
],
"author": "satterly",
"license": "MIT",
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/github": "^9.0.0",
"@octokit/webhooks-types": "^7.6.0",
"@slack/webhook": "^7.0.2",
"@types/js-yaml": "^4.0.4",
"handlebars": "^4.7.9",
"js-yaml": "^4.1.1"
},
"devDependencies": {
"@types/istanbul-lib-report": "^3.0.0",
"@types/jest": "^29.5.12",
"@types/node": "^24.0.0",
"@typescript-eslint/eslint-plugin": "^8.57.2",
"@typescript-eslint/parser": "^8.57.2",
"esbuild": "^0.27.0",
"axios-mock-adapter": "^1.22.0",
"eslint": "^9.27.0",
"eslint-plugin-github": "^6.0.0",
"eslint-plugin-jest": "^29.15.1",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"js-yaml": "^4.1.1",
"prettier": "^2.4.1",
"ts-jest": "^29.1.2",
"typescript": "^5.8.3"
}
}