-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
53 lines (53 loc) · 1.54 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
49
50
51
52
53
{
"name": "botbuilder-slack",
"version": "2.1.0",
"description": "Slack Connector for botbuilder. Compatibe with Microsoft Slack connector.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "https://github.com/suttna/botbuilder-slack",
"author": "Martin Fernandez <[email protected]>",
"license": "MIT",
"scripts": {
"test": "jest --config jest.json --forceExit --runInBand --verbose",
"posttest": "codecov -f coverage/*.json",
"build": "yarn build:src",
"build:src": "tsc",
"build:tests": "tsc -p __tests__/tsconfig.json",
"docs": "typedoc src && touch docs/.nojekyll",
"watch": "tsc --watch",
"lint": "tslint 'src/**/*.ts' '__tests__/**/*.ts'",
"lint:fix": "tslint 'src/**/*.ts' '__tests__/**/*.ts' --fix",
"ci": "yarn lint && yarn build:src && yarn build:tests && yarn test",
"prepare": "yarn build",
"preversion": "yarn test",
"changelog": "bundle exec github_changelog_generator"
},
"keywords": [
"bot",
"node",
"botframework",
"botbuilder",
"slack",
"connector"
],
"dependencies": {
"@slack/client": "3.16.0",
"botbuilder": "^3.9.1"
},
"devDependencies": {
"@types/bluebird": "3.5.20",
"@types/jest": "^22.2.0",
"@types/lodash": "^4.14.105",
"@types/node": "12.12.6",
"@types/nock": "9.1.1",
"@types/qs": "6.5.1",
"@types/ws": "4.0.0",
"codecov": "3.0.0",
"jest": "^22.4.0",
"nock": "9.1.6",
"ts-jest": "^22.4.1",
"tslint": "5.9.1",
"typedoc": "^0.11.1",
"typescript": "^2.7.2"
}
}