-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
46 lines (46 loc) · 1.02 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
{
"name": "@tryfabric/mack",
"repository": {
"type": "git",
"url": "https://github.com/tryfabric/mack.git"
},
"version": "1.2.1",
"description": "Converts Markdown to Slack BlockKit Blocks",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"scripts": {
"test": "jest",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint",
"release": "release-it"
},
"keywords": [
"markdown",
"parser",
"gfm",
"slack"
],
"author": "Instantish",
"license": "MIT",
"dependencies": {
"@slack/types": "^2.1.0",
"fast-xml-parser": "^4.0.6",
"marked": "^4.0.12"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/marked": "^4.0.2",
"@types/node": "^15.12.4",
"gts": "^3.1.0",
"jest": "^27.0.5",
"release-it": "^14.11.6",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"typescript": "^4.3.4"
}
}