-
-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.58 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 3.58 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "expect-webdriverio",
"version": "5.6.5",
"author": "Mykola Grybyk <[email protected]>",
"description": "WebdriverIO Assertion Library",
"license": "MIT",
"homepage": "https://webdriver.io",
"repository": {
"type": "git",
"url": "git+https://github.com/webdriverio/expect-webdriverio.git"
},
"bugs": {
"url": "https://github.com/webdriverio/expect-webdriverio/issues"
},
"keywords": [
"expect-webdriverio",
"expect",
"webdriverio",
"wdio"
],
"type": "module",
"module": "./lib/index.js",
"exports": {
".": [
{
"types": "./types/expect-webdriverio.d.ts",
"import": "./lib/index.js"
},
"./lib/index.js"
],
"./jest": [
{
"types": "./jest.d.ts"
}
],
"./jasmine": [
{
"types": "./jasmine.d.ts"
}
],
"./jasmine-wdio-expect-async": [
{
"types": "./jasmine-wdio-expect-async.d.ts"
}
],
"./types": "./types/expect-global.d.ts",
"./expect-global": "./types/expect-global.d.ts"
},
"types": "./types/expect-webdriverio.d.ts",
"typeScriptVersion": "3.8.3",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "run-s clean compile",
"clean": "run-p clean:*",
"clean:build": "rimraf ./lib",
"compile": "tsc --build tsconfig.build.json",
"tsc:root-types": "node types-checks-filter-out-node_modules.js",
"test": "run-s test:*",
"test:tsc": "tsc --project tsconfig.json --noEmit --rootDir .",
"test:lint": "eslint .",
"test:unit": "vitest --run",
"test:types": "npm run ts && npm run tsc:root-types",
"ts": "run-s ts:* ts:*:*",
"ts:jest:@jest/global": "cd test-types/jest-@jest_global && tsc --project ./tsconfig.json",
"ts:jest:@types-jest": "cd test-types/jest-@types_jest && tsc --project ./tsconfig.json",
"ts:mocha": "cd test-types/mocha && tsc --project ./tsconfig.json",
"ts:jasmine": "cd test-types/jasmine && tsc --project ./tsconfig.json",
"ts:jasmine-async": "cd test-types/jasmine-async && tsc --project ./tsconfig.json",
"checks:all": "npm run build && npm run compile && npm run tsc:root-types && npm run test && npm run ts",
"watch": "npm run compile -- --watch",
"prepare": "husky install",
"playgrounds:setup": "for dir in playgrounds/*/; do cd \"$dir\" && npm install && cd ../..; done",
"playgrounds:checks:all": "for dir in playgrounds/*/; do cd \"$dir\" && npm run checks:all && cd ../..; done",
"playgrounds:snapshots:update": "cd playgrounds/mocha && npm run snapshots:update && cd ../jest && npm run snapshots:update && cd ../.."
},
"dependencies": {
"@vitest/snapshot": "^4.0.16",
"deep-eql": "^5.0.2",
"expect": "^30.2.0",
"jest-matcher-utils": "^30.2.0"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/jasmine": "^5.1.8",
"@types/jest": "^30.0.0",
"@types/node": "^24.10.1",
"@types/mocha": "^10.0.10",
"@jest/globals": "^30.2.0",
"@vitest/coverage-v8": "^4.0.16",
"@wdio/eslint": "^0.1.2",
"@wdio/types": "^9.20.0",
"eslint": "^9.39.2",
"husky": "^9.1.7",
"npm-run-all2": "^8.0.4",
"release-it": "^19.1.0",
"rimraf": "^6.1.2",
"shelljs": "^0.10.0",
"typescript": "^5.9.3",
"vitest": "^4.0.16",
"webdriverio": "^9.21.0"
},
"peerDependencies": {
"@wdio/globals": "^9.0.0",
"@wdio/logger": "^9.0.0",
"webdriverio": "^9.0.0"
},
"peerDependenciesMeta": {
"@wdio/globals": {
"optional": false
},
"@wdio/logger": {
"optional": false
},
"webdriverio": {
"optional": false
}
}
}