forked from oferitz/html-to-mrkdwn-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.03 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": "@clearfeed-ai/html-to-mrkdwn-ts",
"description": "Fast HTML to Slack flavored mrkdwn",
"version": "2.2.2",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/clearfeed/html-to-mrkdwn-ts.git"
},
"bugs": {
"url": "https://github.com/clearfeed/html-to-mrkdwn-ts/issues"
},
"homepage": "https://github.com/clearfeed/html-to-mrkdwn-ts#readme",
"engines": {
"node": ">=14.0.0"
},
"files": [
"README.md",
"CHANGELOG.md",
"lib"
],
"keywords": [
"html",
"markdown",
"slack",
"mrkdwn"
],
"author": "ClearFeed",
"scripts": {
"run": "ts-node ./src/index.ts",
"build": "tsc",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^29.5.4",
"@types/node": "^17.0.1",
"jest": "^29.6.4",
"prettier": "^2.5.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"dependencies": {
"@clearfeed-ai/node-html-markdown": "^1.4.1"
}
}