-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.04 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.04 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
{
"name": "@codeceptjs/expect-helper",
"version": "1.2.0",
"description": "Expect helper for CodeceptJS",
"type": "module",
"types": "index.d.ts",
"main": "index.js",
"scripts": {
"test": "mocha index_test.js"
},
"author": "Michael Bodnarchuk @davertmik",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/codeceptjs/expect-helper.git"
},
"bugs": {
"url": "https://github.com/codeceptjs/expect-helper/issues"
},
"homepage": "https://github.com/codeceptjs/expect-helper#readme",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20"
},
"exports": {
"require": "./index.cjs",
"import": "./index.js"
},
"dependencies": {
"@achingbrain/chai-string": "^2.0.1",
"chai": "^5.3.3",
"chai-exclude": "^3.0.1",
"chai-json-schema-ajv": "^5.2.4",
"chai-match-pattern": "^1.3.0"
},
"devDependencies": {
"codeceptjs": "^3.7.9",
"mocha": "v12.0.0-beta-10",
"sinon": "^21.1.2"
},
"overrides": {
"axios": "1.15.2"
}
}