forked from asmarques/chai-bignumber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 947 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
{
"name": "chai-bignumber",
"version": "3.0.0",
"description": "Chai assertions for comparing arbitrary-precision decimals using the bignumber.js library",
"main": "chai-bn.js",
"scripts": {
"lint": "jshint *.js",
"test": "mocha test/*.js"
},
"devDependencies": {
"chai": "^4.2.0",
"jshint": "^2.9.2",
"mocha": "^5.2.0",
"release-it": "^12.3.2"
},
"author": "António Marques <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/asmarques/chai-bignumber",
"repository": {
"type": "git",
"url": "git://github.com/asmarques/chai-bignumber"
},
"keywords": [
"chai",
"chai-plugin",
"math",
"browser",
"test",
"arbitrary",
"precision",
"arithmetic",
"big",
"number",
"decimal",
"float",
"bignumber"
],
"files": [
"chai-bn.js"
],
"dependencies": {
"bn.js": "^4.11.8",
"number-to-bn": "^1.7.0"
}
}