-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.79 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-deploy-message",
"version": "0.0.0",
"private": true,
"description": "GitHub Action to send Slack deploy message",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"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/conventional-actions/slack-deploy-message.git"
},
"homepage": "https://github.com/conventional-actions/slack-deploy-message",
"bugs": {
"url": "https://github.com/conventional-actions/slack-deploy-message/issues"
},
"keywords": [
"GitHub",
"action",
"slack"
],
"author": "Conventional Actions",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.1",
"@conventional-actions/toolkit": "^1.1.5",
"glob": "^9.3.0"
},
"devDependencies": {
"@actions/github": "^5.1.1",
"@slack/web-api": "^6.8.1",
"@types/flat": "^5.0.2",
"@types/glob": "^8.1.0",
"@types/js-yaml": "^4.0.5",
"@types/node": "^18.15.3",
"@types/whatwg-url": "^11.0.0",
"@typescript-eslint/parser": "^5.55.0",
"@vercel/ncc": "^0.36.1",
"axios": "^1.3.4",
"eslint": "^8.36.0",
"eslint-plugin-github": "^4.6.1",
"eslint-plugin-jest": "^27.2.1",
"flat": "^5.0.2",
"https-proxy-agent": "^5.0.1",
"jest": "^29.5.0",
"js-yaml": "^4.1.0",
"markup-js": "^1.5.21",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5",
"whatwg-url": "^12.0.1"
}
}