-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
37 lines (37 loc) · 902 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
{
"name": "@yaffle/bigdecimal",
"version": "2.0.2",
"description": "Arbitrary precision decimal arithmetic library. Polyfill for decimal proposal. Implemented on the top of BigInt.",
"main": "BigDecimal.js",
"types": "BigDecimal.d.ts",
"scripts": {
"test": "node --experimental-modules tests.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Yaffle/BigDecimal.git"
},
"keywords": [
"arbitrary",
"precision",
"decimal",
"arithmetic",
"bigdecimal"
],
"files": [
"BigDecimal.js",
"BigDecimalMath.js",
"BigDecimal.d.ts"
],
"author": "Viktor Mukhachev",
"license": "$$$",
"bugs": {
"url": "https://github.com/Yaffle/BigDecimal/issues"
},
"homepage": "https://github.com/Yaffle/BigDecimal#readme",
"type": "module",
"devDependencies": {
"decimal.js": "^10.2.0",
"http-server": "^14.1.1"
}
}