-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
49 lines (49 loc) · 1.14 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
{
"name": "@truesparrow/slackmin",
"version": "4.0.0",
"description": "Easy integration to slack for sending messages, opening modals, interactive endpoints and much more.",
"main": "index.js",
"scripts": {
"pre-commit": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TrueSparrowSystems/slackmin.git"
},
"keywords": [
"slackmin",
"slash commands",
"interactive endpoints",
"slack block UI",
"slack modal",
"slack message"
],
"author": "True Sparrow",
"license": "MIT",
"bugs": {
"url": "https://github.com/TrueSparrowSystems/slackmin/issues"
},
"homepage": "https://github.com/TrueSparrowSystems/slackmin#readme",
"dependencies": {
"@truesparrow/base": "^2.0.0",
"sanitize-html": "2.7.0",
"uuid": "8.3.2",
"@slack/bolt": "3.2.0",
"bignumber.js": "9.0.0"
},
"devDependencies": {
"eslint": "7.20.0",
"lint-staged": "10.5.4",
"pre-commit": "1.2.2",
"prettier": "1.13.7"
},
"pre-commit": [
"pre-commit"
],
"lint-staged": {
"*.js": [
"prettier --write --config .prettierrc.json",
"git add"
]
}
}