-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
46 lines (46 loc) · 1.03 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
{
"name": "chai-exclude",
"version": "3.0.0",
"description": "Exclude keys to compare from a deep equal operation with chai expect and assert",
"type": "module",
"main": "chai-exclude.js",
"types": "chai-exclude.d.ts",
"author": "Saugat Acharya <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/mesaugat/chai-exclude",
"files": [
"chai-exclude.js",
"chai-exclude.d.ts"
],
"scripts": {
"test": "mocha --reporter spec --recursive --colors *.test.js",
"lint": "standard --fix"
},
"keywords": [
"chai",
"assert",
"expect",
"exclude",
"chai-plugin",
"chai-exclude"
],
"repository": {
"type": "git",
"url": "https://github.com/mesaugat/chai-exclude"
},
"bugs": {
"url": "https://github.com/mesaugat/chai-exclude/issues"
},
"devDependencies": {
"@types/chai": "^4.3.16",
"chai": "^5.1.1",
"mocha": "^10.6.0",
"standard": "^17.0.0"
},
"dependencies": {
"fclone": "^1.0.11"
},
"peerDependencies": {
"chai": ">= 5"
}
}