generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.73 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
{
"name": "action-slack-deploy-pipeline",
"description": "Post GitHub Action deploy workflow progress notifications to Slack",
"version": "0.0.0",
"author": "Nick Amoscato <[email protected]>",
"private": true,
"homepage": "https://github.com/marketplace/actions/slack-deploy-pipeline-notifications",
"repository": {
"type": "git",
"url": "git+https://github.com/Fieldguide/action-slack-deploy-pipeline.git"
},
"bugs": {
"url": "https://github.com/Fieldguide/action-slack-deploy-pipeline/issues"
},
"keywords": [
"actions",
"slack",
"deployment",
"pipeline",
"workflow",
"notifications",
"progress"
],
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "npm run package -- --watch",
"bundle": "npm run format:write && npm run package",
"format:write": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint . --ext .ts",
"package": "ncc build src/main.ts --license licenses.txt",
"test": "jest --watch",
"test:ci": "jest",
"all": "npm run format:check && npm run lint && npm run test:ci && npm run package"
},
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@octokit/webhooks-types": "^7.5.1",
"@slack/web-api": "^7.3.1",
"date-fns": "^2.30.0"
},
"devDependencies": {
"@types/node": "^20.12.11",
"@typescript-eslint/parser": "^7.9.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.57.0",
"eslint-plugin-github": "^4.10.2",
"eslint-plugin-jest": "^28.5.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5"
}
}