-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.63 KB
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
{
"name": "wasaby-cli",
"version": "23.2100.0",
"description": "Build and run unit tests for wasaby",
"scripts": {
"test": "jest --roots=test",
"coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git@git.sbis.ru:saby/wasaby-cli.git"
},
"bin": {
"wasaby-cli": "./cli.js"
},
"jest": {
"roots": [
"src",
"test"
],
"collectCoverageFrom": [
"**/*.js"
],
"coverageDirectory": "./coverage",
"coverageReporters": [
[
"html",
{
"subdir": "coverage"
}
]
]
},
"dependencies": {
"webdriverio": "7.20.9",
"@wdio/cli": "7.20.9",
"@wdio/local-runner": "7.20.9",
"@wdio/reporter": "7.20.7",
"@wdio/junit-reporter": "7.20.7",
"@wdio/mocha-framework": "7.20.7",
"@wdio/devtools-service": "7.20.9",
"body-parser": "1.19.2",
"cookie-parser": "1.4.6",
"es5-ext": "0.10.53",
"express": "4.17.3",
"fs-extra": "10.0.1",
"glob": "7.2.0",
"open": "8.4.0",
"openssl-nodejs": "1.0.5",
"p-map": "4.0.0",
"serve-static": "1.14.2",
"spdy": "4.0.2",
"xml2js": "0.4.23",
"saby-typescript": "git+https://git.sbis.ru/saby/typescript.git#rc-23.2100",
"saby-units": "git+https://git.sbis.ru/saby/units.git#rc-23.2100",
"sbis3-builder": "git+https://git.sbis.ru/saby/builder.git#rc-23.2100"
},
"devDependencies": {
"jest": "27.5.1"
},
"resolutions": {
"es5-ext": "0.10.53"
},
"overrides": {
"es5-ext": "0.10.53"
}
}