-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
74 lines (74 loc) · 2.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "exactnumber",
"description": "Arbitrary-precision decimals. Enables making math calculations with rational numbers, without precision loss.",
"version": "1.0.4",
"main": "dist/index.umd.js",
"module": "dist/index.esm.js",
"types": "dist/types/src/index.d.ts",
"scripts": {
"build-rollup": "rollup -c",
"build": "npm run build-rollup",
"eslint": "eslint ./src --ext .js,.ts",
"test": "jest --coverage --",
"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",
"approximation"
],
"bugs": {
"url": "https://github.com/Daninet/exactnumber/issues"
},
"homepage": "https://github.com/Daninet/exactnumber#readme",
"author": "Dani Biró <[email protected]> (https://danibiro.com)",
"repository": {
"type": "git",
"url": "git+https://github.com/Daninet/exactnumber.git"
},
"sideEffects": false,
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-typescript": "^12.1.0",
"@types/estree": "^1.0.6",
"@types/jest": "^29.5.13",
"@types/node": "^20.16.10",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"rollup": "^4.22.5",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-license": "^3.5.3",
"@rollup/plugin-terser": "^0.4.4",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"typedoc": "^0.26.7"
}
}