-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.15 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
{
"name": "botbuilder-markdown",
"version": "0.0.8",
"description": "Adds a middleware that converts markdown to specific format for each channel.",
"repository": "https://github.com/suttna/botbuilder-markdown",
"author": "Santiago Doldan <[email protected]>",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --config jest.json --forceExit --runInBand --verbose",
"posttest": "codecov -f coverage/*.json",
"build": "yarn lint && tsc",
"watch": "tsc --watch",
"lint": "tslint 'src/**/*.ts' '__tests__/**/*.ts'",
"lint:fix": "tslint 'src/**/*.ts' '__tests__/**/*.ts' --fix",
"ci": "yarn lint && yarn build && yarn test",
"prepublish": "yarn build"
},
"keywords": [
"bot",
"node",
"botframework",
"botbuilder",
"markdown",
"parser",
"slack",
"msteams"
],
"dependencies": {
"botbuilder": "^3.9.1",
"html-to-markdown": "1.0.0"
},
"devDependencies": {
"@types/jest": "22.1.3",
"codecov": "3.0.0",
"jest": "22.3.0",
"ts-jest": "22.0.4",
"tslint": "5.9.1",
"typedoc": "0.9.0",
"typescript": "2.6.2"
}
}