forked from microsoft/BotFramework-WebChat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.95 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
{
"name": "botframework-webchat-root",
"version": "4.2.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,
"coveragePathIgnorePatterns": [
"\\.json$",
"/node_modules/"
],
"coverageReporters": [
"lcov",
"text-summary"
],
"setupTestFrameworkScriptFile": "<rootDir>/__tests__/setup/setupTestFramework.js",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"<rootDir>/__tests__/setup/"
],
"testRegex": "(/__tests__/.*)\\.jsx?$"
},
"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",
"test:all": "lerna run --parallel --stream test",
"watch": "lerna run --parallel --scope=botframework-webchat* --stream watch"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"coveralls": "^3.0.2",
"get-port": "^4.0.0",
"jest": "^23.6.0",
"jest-image-snapshot": "^2.6.0",
"lerna": "^3.4.0",
"selenium-webdriver": "^4.0.0-alpha.1",
"serve-handler": "^5.0.5"
}
}