forked from asmarques/chai-bignumber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.15 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
53
54
{
"name": "@defi.org/chai-bignumber",
"version": "3.0.2",
"description": "Chai assertions for comparing arbitrary-precision decimals using the bignumber.js library",
"main": "./dist/chai-bignumber.js",
"types": "./dist/chai-bignumber.d.ts",
"files": [
"dist"
],
"author": "[email protected]",
"license": "MIT",
"homepage": "https://github.com/defi-org-code/chai-bignumber",
"repository": {
"type": "git",
"url": "git://github.com/defi-org-code/chai-bignumber"
},
"keywords": [
"chai",
"chai-plugin",
"math",
"browser",
"test",
"arbitrary",
"precision",
"arithmetic",
"big",
"number",
"decimal",
"float",
"bignumber"
],
"peerDependencies": {
"bignumber.js": "*"
},
"devDependencies": {
"bignumber.js": "9.x",
"@types/chai": "4.x",
"@types/mocha": "9.x",
"@types/lodash": "4.x",
"lodash": "4.x",
"chai": "4.x",
"mocha": "10.x",
"prettier": "2.x",
"typescript": "4.x",
"ts-node": "10.x"
},
"scripts": {
"test": "env mocha -r ts-node/register 'test/**/*.ts'",
"build": "tsc"
},
"prettier": {
"printWidth": 180
}
}