forked from microsoft/BotFramework-WebChat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.48 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
85
{
"name": "botframework-webchat-root",
"version": "4.3.1-0",
"private": true,
"files": [
"lib/**/*"
],
"author": "Microsoft Corporation",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Microsoft/BotFramework-WebChat.git"
},
"bugs": {
"url": "https://github.com/Microsoft/BotFramework-WebChat/issues"
},
"homepage": "https://github.com/Microsoft/BotFramework-WebChat#readme",
"keywords": [],
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"**/packages/**/src/**/*.{js,jsx,ts,tsx}",
"!**/*.{spec,test}.{js,jsx,ts,tsx}",
"!**/*.json",
"!**/node_modules/**",
"!**/packages/playground/**"
],
"coverageReporters": [
"lcov",
"text-summary"
],
"moduleDirectories": [
"node_modules",
"packages"
],
"moduleFileExtensions": [
"js",
"jsx",
"ts",
"tsx"
],
"setupFilesAfterEnv": [
"<rootDir>/__tests__/setup/setupTestFramework.js"
],
"testPathIgnorePatterns": [
"<rootDir>/__tests__/setup/",
"<rootDir>/packages/playground/",
"<rootDir>/samples/"
],
"transform": {
"\\.[jt]sx?$": "./babel-jest-config.js"
}
},
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run --scope=botframework-webchat* --stream build",
"build:sample": "lerna run --scope=sample-* --stream build",
"clean": "lerna run --scope=botframework-webchat* --parallel --stream clean",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"lerna-publish": "lerna publish",
"prepublishOnly": "lerna run --scope=botframework-webchat* --scope=playground --stream prepublishOnly",
"test": "jest --no-cache",
"test:all": "lerna run --parallel --stream test",
"watch": "lerna run --parallel --scope=botframework-webchat* --stream watch"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.0.0",
"@babel/runtime": "^7.3.4",
"babel-jest": "^24.1.0",
"coveralls": "^3.0.2",
"get-port": "^4.0.0",
"jest": "^24.1.0",
"jest-image-snapshot": "^2.8.1",
"lerna": "^3.13.1",
"selenium-webdriver": "^4.0.0-alpha.1",
"serve-handler": "^5.0.5"
}
}