-
Notifications
You must be signed in to change notification settings - Fork 109
/
package.json
47 lines (47 loc) · 971 Bytes
/
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
{
"name": "chai-as-promised",
"type": "module",
"description": "Extends Chai with assertions about promises.",
"keywords": [
"chai",
"chai-plugin",
"browser",
"async",
"testing",
"assertions",
"promises",
"promises-aplus"
],
"version": "7.1.2",
"author": "Domenic Denicola <d@domenic.me> (https://domenic.me)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/chaijs/chai-as-promised.git"
},
"main": "./lib/chai-as-promised.js",
"exports": {
".": "./lib/chai-as-promised.js"
},
"files": [
"lib"
],
"scripts": {
"test": "c8 mocha",
"lint": "eslint .",
"format": "prettier --write lib test"
},
"dependencies": {
"check-error": "^2.0.0"
},
"peerDependencies": {
"chai": ">= 2.1.2 < 6"
},
"devDependencies": {
"c8": "^9.1.0",
"chai": "^5.1.0",
"eslint": "^8.57.0",
"mocha": "^10.4.0",
"prettier": "^3.2.5"
}
}