forked from OpenZeppelin/chai-bn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.16 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
{
"name": "chai-ethers-bignumber",
"version": "0.3.1",
"description": "Chai assertions for comparing arbitrary-precision integers using ethers' bignumber abstraction",
"main": "chai-bn.js",
"types": "chai-bn.d.ts",
"scripts": {
"lint": "eslint .",
"test": "mocha test/*.js"
},
"devDependencies": {
"@ethersproject/bignumber": "^5.6.0",
"@types/chai": "^4.3.0",
"chai": "^4.3.4",
"eslint": "^7.31.0",
"eslint-plugin-mocha-no-only": "^1.1.1",
"mocha": "^9.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"author": "Nicolas Venturo <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/ZeppelinSolutions/chai-bn#readme",
"repository": {
"type": "git",
"url": "git://github.com/ZeppelinSolutions/chai-bn"
},
"keywords": [
"chai",
"chai-plugin",
"math",
"test",
"arbitrary",
"precision",
"arithmetic",
"big",
"number",
"decimal",
"float",
"bignumber",
"bn"
],
"files": [
"chai-bn.js",
"chai-bn.d.ts"
],
"dependencies": {},
"peerDependencies": {
"@ethersproject/bignumber": "^5.6.0",
"chai": "^4.0.0"
}
}