-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.03 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.03 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
{
"name": "block-kit-handler",
"version": "2.0.1",
"description": "npm module to handle slack block kit",
"main": ".dist/src/index.js",
"scripts": {
"start": "tsc --build && node .dist/index.js",
"build": "tsc",
"watch": "tsc --watch",
"test": "cross-env TS_NODE_FILES=true mocha --exit --require ts-node/register --colors test/**/*.ts",
"coverage": "nyc npm run test"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/saito-ya/block-kit-handler.git"
},
"keywords": [
"Slack",
"Block Kit"
],
"author": "SAITO Yasuo",
"license": "MIT",
"bugs": {
"url": "https://github.com/saito-ya/block-kit-handler/issues"
},
"homepage": "https://github.com/saito-ya/block-kit-handler#readme",
"dependencies": {
"@slack/types": "^2.7.0",
"cross-env": "^7.0.2",
"mocha": "^7.2.0",
"nyc": "^15.1.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/mocha": "^7.0.2",
"chai": "^4.2.0"
}
}