-
-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathpackage.json
More file actions
132 lines (132 loc) · 4.08 KB
/
Copy pathpackage.json
File metadata and controls
132 lines (132 loc) · 4.08 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
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "expect-webdriverio",
"version": "6.0.9",
"author": "Mykola Grybyk <mykola.grybyk@gmail.com>",
"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",
"./api": [
{
"types": "./types/expect-webdriverio.d.ts",
"import": "./lib/api/index.js"
},
"./lib/api/index.js"
]
},
"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": "run-s compile:*",
"compile:lib": "tsc --build tsconfig.build.json",
"compile:check": "if [ ! -f lib/index.js ] || [ $(find lib -type f | wc -l) -le 30 ]; then echo 'File structure under lib is broken'; exit 1; fi",
"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:jasmine": "cd test-types/jasmine && vitest --typecheck --typecheck.tsconfig ./tsconfig.json --run",
"ts:jasmine-global-expect-async": "cd test-types/jasmine-global-expect-async && vitest --typecheck --typecheck.tsconfig ./tsconfig.json --run",
"ts:jest:@types-jest": "cd test-types/jest-@types_jest && vitest --typecheck --typecheck.tsconfig ./tsconfig.json --run",
"ts:mocha": "cd test-types/mocha && vitest --typecheck --typecheck.tsconfig ./tsconfig.json --run",
"ts:arethetypeswrong": "npx @arethetypeswrong/cli --pack . --profile esm-only",
"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",
"playgrounds:clean": "rimraf --glob '**/node_modules'",
"playgrounds:setup": "npm run playgrounds:clean; npm i && cd playgrounds && npm run setup",
"playgrounds:checks:all": "cd playgrounds && npm run checks:all",
"playgrounds:snapshots:update": "cd playgrounds && npm run snapshots:update"
},
"dependencies": {
"@vitest/snapshot": "^4.1.10",
"deep-eql": "^5.0.2",
"expect": "^30.4.1",
"jest-matcher-utils": "^30.4.1"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.5",
"@jest/globals": "^30.4.1",
"@types/debug": "^4.1.13",
"@types/jasmine": "^5.1.15",
"@types/jest": "^30.0.0",
"@types/mocha": "^10.0.10",
"@types/node": "^24.13.3",
"@vitest/coverage-v8": "^4.1.11",
"@vitest/eslint-plugin": "^1.6.27",
"@wdio/eslint": "^0.1.3",
"@wdio/types": "^9.31.2",
"eslint": "^9.39.5",
"husky": "^9.1.7",
"npm-run-all2": "^9.0.3",
"release-it": "^21.0.2",
"rimraf": "^6.1.3",
"strip-ansi": "^7.2.0",
"typescript": "^5.9.3",
"vitest": "^4.1.11",
"webdriverio": "^9.31.5"
},
"peerDependencies": {
"@wdio/globals": "^9.0.0",
"@wdio/logger": "^9.0.0",
"webdriverio": "^9.28.0"
},
"peerDependenciesMeta": {
"@wdio/globals": {
"optional": false
},
"@wdio/logger": {
"optional": false
},
"webdriverio": {
"optional": false
}
}
}