-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.93 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.93 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "exactnumber",
"description": "Arbitrary-precision decimals. Enables making math calculations with rational numbers, without precision loss.",
"version": "2.0.1",
"main": "dist/index.umd.js",
"module": "dist/index.esm.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build-rollup": "rollup -c",
"build": "npm run build-rollup",
"biome-check": "npx @biomejs/biome check",
"biome-format": "npx @biomejs/biome check --write",
"eslint": "eslint ./src --ext .js,.ts",
"test": "jest --coverage --",
"test-main-coverage": "npx jest --coverage --testPathIgnorePatterns=\"src/approx/*\"",
"typedoc": "typedoc",
"typedoc-serve": "npm run typedoc && npx serve -n docs"
},
"keywords": [
"exact",
"math",
"arithmetic",
"calculation",
"repeating",
"decimals",
"fixed",
"point",
"fraction",
"fractions",
"arbitrary",
"precision",
"float",
"double",
"bignumber",
"biginteger",
"bigdecimal",
"bigint",
"bitwise"
],
"bugs": {
"url": "https://github.com/Daninet/exactnumber/issues"
},
"homepage": "https://github.com/Daninet/exactnumber#readme",
"author": "Dani Biró <danibiro93@gmail.com> (https://danibiro.com)",
"repository": {
"type": "git",
"url": "git+https://github.com/Daninet/exactnumber.git"
},
"sideEffects": false,
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^2.1.3",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.4",
"@types/jest": "^30.0.0",
"@types/node": "^24.2.0",
"jest": "^30.0.5",
"rollup": "^4.46.2",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-license": "^3.6.0",
"ts-jest": "^29.4.1",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typedoc": "^0.28.9",
"typescript": "^5.9.2"
}
}