forked from microsoft/botbuilder-js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 3.09 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"private": true,
"name": "botbuilder-js",
"version": "4.12.0",
"workspaces": [
"libraries/*",
"libraries/functional-tests/dialogToDialog/*",
"libraries/testskills/*",
"testing/*",
"tools",
"transcripts"
],
"scripts": {
"browser-functional-test": "yarn workspace browser-functional-tests test",
"build": "yarn execute --bail --coordinated --parallel --script build",
"build-docs": "yarn execute --coordinated --script build-docs",
"clean": "yarn execute --parallel --script clean",
"execute": "yarn workspace botbuilder-repo-utils execute",
"functional-test": "yarn build && yarn workspace functional-tests test",
"lint": "yarn execute --parallel --script lint --scriptArgs=--quiet",
"lint:fix": "yarn lint --scriptArgs=--fix",
"package": "yarn execute --coordinated --no-private yarn pack",
"test": "npm-run-all build test:mocha",
"test:compat": "yarn execute --coordinated --script test:compat",
"test:consumer": "yarn workspace consumer-test test",
"test:devops": "npm-run-all test:mocha:junit test:nyc:cobertura",
"test:github": "npm-run-all test:mocha test:nyc:lcov",
"test:mocha": "nyc mocha \"libraries/@(adaptive*|bot*)/tests/**/*.test.js\" --exit --check-leaks",
"test:mocha:junit": "yarn test:mocha --reporter mocha-junit-reporter --reporter-options includePending=true",
"test:nyc:cobertura": "nyc report --reporter=cobertura",
"test:nyc:lcov": "nyc report --reporter=text-lcov > .lcov.info",
"test:repoutils": "yarn workspace botbuilder-repo-utils test",
"update-versions": "yarn workspace botbuilder-repo-utils update-versions"
},
"devDependencies": {
"@azure/ms-rest-js": "1.9.0",
"@microsoft/api-extractor": "^7.11.2",
"@standardlabs/downlevel-dts": "^0.7.5",
"@types/jsonwebtoken": "7.2.8",
"@types/lodash": "^4.14.134",
"@types/mocha": "^5.2.7",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"applicationinsights": "^1.7.5",
"browserify": "^17.0.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-jsdoc": "^30.7.7",
"eslint-plugin-only-warn": "^1.0.2",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-security": "^1.4.0",
"exorcist": "^1.0.1",
"mocha": "^6.2.3",
"mocha-junit-reporter": "^2.0.0",
"ms-rest-azure": "^2.6.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"prettier": "^2.1.2",
"read-text-file": "^1.1.0",
"replace-in-file": "^4.1.0",
"rimraf": "^3.0.2",
"shx": "^0.3.3",
"sinon": "^9.2.1",
"source-map-support": "^0.5.19",
"sponge": "^0.1.0",
"ts-node": "^9.0.0",
"typedoc": "^0.19.2",
"typedoc-plugin-external-module-name": "^4.0.3",
"typedoc-plugin-markdown": "^3.0.11",
"typescript": "^4.0.5"
},
"nyc": {
"exclude": [
"**/botframework*/**/generated/**",
"**/botbuilder*/**/generated/**",
"**/bot-integration-tests/**",
"**/adaptive-expressions/**/generated/**",
"**/botframework-luis/**",
"**/tests/**",
"**/tools/**",
"**/internal.*"
]
}
}