forked from asmarques/chai-bignumber
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
49 lines (49 loc) · 1.02 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
{
"name": "chai-bn",
"version": "0.3.1",
"description": "Chai assertions for comparing arbitrary-precision integers using the bignumber.js library",
"main": "chai-bn.js",
"types": "chai-bn.d.ts",
"scripts": {
"lint": "eslint .",
"test": "mocha test/*.js"
},
"devDependencies": {
"bn.js": "^5.2.0",
"chai": "^4.3.4",
"eslint": "^7.31.0",
"eslint-plugin-mocha-no-only": "^1.1.1",
"mocha": "^9.0.2"
},
"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": {
"bn.js": "^5.0.0",
"chai": "^4.0.0"
}
}