-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.27 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
{
"name": "botbuilder-stride",
"version": "0.0.1",
"description": "Stride Connector for botbuilder.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --config jest.json --forceExit --runInBand --verbose",
"build": "yarn build:src",
"build:src": "tsc",
"build:tests": "tsc -p __tests__/tsconfig.json",
"watch": "tsc --watch",
"lint": "tslint 'src/**/*.ts' '__tests__/**/*.ts'",
"ci": "yarn lint && yarn build:src && yarn build:tests && yarn test",
"prepare": "yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/suttna/botbuilder-stride.git"
},
"keywords": [
"bot",
"node",
"botframework",
"botbuilder",
"stride",
"connector"
],
"author": "Santiago Doldán <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/suttna/botbuilder-stride#readme",
"dependencies": {
"botbuilder": "^3.13.1",
"request-promise-native": "^1.0.5"
},
"devDependencies": {
"@types/jest": "^22.0.0",
"@types/nock": "^9.1.1",
"@types/node": "^8.5.2",
"@types/request-promise-native": "^1.0.10",
"jest": "^22.0.4",
"nock": "^9.1.5",
"ts-jest": "^22.0.0",
"tslint": "^5.8.0",
"typescript": "^2.6.2"
}
}