-
Notifications
You must be signed in to change notification settings - Fork 281
/
package.json
43 lines (43 loc) · 1.79 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
{
"private": true,
"name": "botbuilder-packages",
"scripts": {
"postinstall": "lerna bootstrap --hoist",
"build": "lerna run build",
"clean": "lerna run clean",
"test:travis": "lerna run build && nyc mocha \"libraries/bot*/tests/*.test.js\" && nyc report --reporter=text-lcov | coveralls",
"test": "lerna run build && nyc mocha \"libraries/bot*/tests/*.test.js\"",
"build-docs": "lerna run build-docs",
"tslint": "tslint ./libraries/*/src/*.ts ./libraries/*/src/**/*.ts -t verbose",
"set-dependency-versions": "node tools/util/updateDependenciesInPackageJsons.js ./libraries ^${Version} botbuilder botbuilder-choices botbuilder-core botbuilder-prompts botframework-connector botframework-config botframework-schema && node tools/util/updateDependenciesInPackageJsons.js ./transcripts ^${Version} botbuilder botbuilder-ai botbuilder-dialogs",
"update-versions": "lerna run set-version && npm run set-dependency-versions"
},
"dependencies": {
"ms-rest-azure": "^2.5.9",
"ms-rest-js": "^1.0.1",
"read-text-file": "^1.1.0",
"replace-in-file": "^3.4.2",
"sinon": "^6.3.4",
"typedoc": "^0.12.0",
"typedoc-plugin-external-module-name": "^1.1.3",
"typedoc-plugin-markdown": "^1.1.15",
"typescript": "^3.1.1"
},
"devDependencies": {
"@types/jsonwebtoken": "7.2.8",
"@types/lodash": "^4.14.116",
"coveralls": "^3.0.2",
"mocha": "^5.2.0",
"tslint": "^5.11.0",
"tslint-microsoft-contrib": "^5.2.1"
},
"nyc": {
"exclude": [
"**/botframework*/**/generated/**",
"**/botframework-luis/**",
"**/tests/**",
"**/tools/**",
"**/internal.*"
]
}
}