-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1 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
{
"name": "html-to-mrkdwn-ts",
"description": "Fast HTML to Slack flavored mrkdwn",
"version": "1.1.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/oferitz/html-to-mrkdwn-ts.git"
},
"bugs": {
"url": "https://github.com/oferitz/html-to-mrkdwn-ts/issues"
},
"homepage": "https://github.com/oferitz/html-to-mrkdwn-ts#readme",
"engines": {
"node": ">=14.0.0"
},
"files": [
"README.md",
"CHANGELOG.md",
"lib"
],
"keywords": [
"html",
"markdown",
"slack",
"mrkdwn"
],
"author": "Ofer Itzhaki",
"scripts": {
"run": "ts-node ./src/index.ts",
"build": "tsc",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^17.0.1",
"jest": "^27.4.5",
"prettier": "^2.5.1",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"dependencies": {
"node-html-markdown": "^1.1.3"
}
}