-
-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
100 lines (100 loc) · 2.6 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "expect-webdriverio",
"version": "5.0.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/standalone.d.ts",
"import": "./lib/index.js"
},
"./lib/index.js"
],
"./jest": [
{
"types": "./jest.d.ts"
}
],
"./types": "./types/jest-global.d.ts"
},
"types": "./types/standalone.d.ts",
"typeScriptVersion": "3.8.3",
"engines": {
"node": ">=18 || >=20 || >=22"
},
"scripts": {
"build": "run-s clean compile",
"clean": "run-p clean:*",
"clean:build": "rimraf ./lib",
"clean:tests": "rimraf test-types/**/node_modules && rimraf test-types/**/dist",
"compile": "tsc --build tsconfig.build.json",
"test": "run-s test:*",
"test:lint": "eslint .",
"test:unit": "vitest --run",
"test:types": "node test-types/copy && npm run ts && npm run clean:tests",
"ts": "run-s ts:*",
"ts:default": "cd test-types/default && tsc -p ./tsconfig.json --incremental",
"ts:jest": "cd test-types/jest && tsc -p ./tsconfig.json --incremental",
"ts:jasmine": "cd test-types/jasmine && tsc -p ./tsconfig.json --incremental",
"watch": "npm run compile -- --watch",
"prepare": "husky install"
},
"dependencies": {
"@vitest/snapshot": "^2.0.5",
"expect": "^29.7.0",
"jest-matcher-utils": "^29.7.0",
"lodash.isequal": "^4.5.0"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.12",
"@types/lodash.isequal": "^4.5.8",
"@types/node": "^22.9.0",
"@vitest/coverage-v8": "^2.1.4",
"@wdio/eslint": "^0.0.3",
"c8": "^10.1.2",
"eslint": "^9.15.0",
"husky": "^9.1.5",
"npm-run-all2": "^7.0.1",
"release-it": "^17.6.0",
"rimraf": "^6.0.1",
"shelljs": "^0.8.5",
"typescript": "^5.5.4",
"vitest": "^2.1.4",
"webdriverio": "^9.2.11"
},
"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
}
}
}