forked from thecodedrift/slack-rich-notify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.67 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
{
"name": "slack-rich-notify",
"private": true,
"version": "2.0.1",
"description": "A Github Action for Slack with markdown, multiline messages, and variables",
"author": "Aibex, Inc <[email protected]>",
"license": "MIT",
"main": "index.js",
"scripts": {
"lint": "eslint index.js",
"package": "ncc build index.js -o dist",
"test": "eslint index.js && tap",
"---": "echo \"--- Utility Scripts ---\"",
"commit:pkg": "npm run package && git add dist",
"commit:cz": "exec < /dev/tty && git-cz --hook || true",
"lint-staged": "lint-staged --shell"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aibexhq/slack-rich-notify.git"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript"
],
"bugs": {
"url": "https://github.com/aibexhq/slack-rich-notify/issues"
},
"homepage": "https://github.com/aibexhq/slack-rich-notify#readme",
"dependencies": {
"@actions/core": "^1.2.4",
"@actions/exec": "^1.0.4",
"@actions/github": "^4.0.0",
"@atomist/slack-messages": "^1.1.1",
"@slack/bolt": "^2.2.3",
"handlebars": "^4.7.6"
},
"devDependencies": {
"@vercel/ncc": "^0.23.0",
"commitizen": "^4.1.2",
"commitlint-config-gitmoji": "^1.0.1",
"conventional-changelog-conventionalcommits": "^4.4.0",
"cz-emoji": "^1.2.2",
"eslint": "^7.6.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"tap": "^14.10.8"
},
"husky": {
"hooks": {
"pre-commit": "npm run commit:pkg && npm run lint-staged --shell",
"post-commit": "git update-index --again",
"prepare-commit-msg": "if [ -t 1 ] ; then npm run commit:cz; fi"
}
}
}