This repository has been archived by the owner on Jan 15, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
68 lines (68 loc) · 1.84 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
{
"name": "decimal128",
"version": "22.0.0",
"type": "module",
"description": "Partial implementation of IEEE 754 Decimal128 decimal floating-point numbers",
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "https://github.com/jessealama/decimal128.js.git"
},
"main": "dist/cjs/Decimal128.cjs",
"module": "dist/esm/Decimal128.mjs",
"typings": "dist/esm/Decimal128.d.ts",
"exports": {
"node": {
"module-sync": "./dist/esm/Decimal128.mjs",
"types": "./dist/esm/Decimal128.d.ts",
"default": "./dist/cjs/Decimal128.cjs"
},
"types": "./dist/esm/Decimal128.d.ts",
"default": "./dist/esm/Decimal128.mjs"
},
"sideEffects": false,
"scripts": {
"build": "mkdir -p dist && esbuild ./src/Decimal128.mjs --bundle --outfile=./dist/Decimal128.js",
"test": "jest",
"format": "prettier . --write",
"lint": "prettier . --check",
"coverage": "npx c8 npx jest"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 4,
"semi": true,
"singleQuote": false
},
"keywords": [
"decimal",
"float",
"number",
"IEEE",
"bigdecimal"
],
"author": "Jesse Alama <[email protected]>",
"license": "ISC",
"dependencies": {
"jsbi": "^4.3.0"
},
"devDependencies": {
"@types/jest": "^29.5.1",
"c8": "^10.1.2",
"esbuild": "0.24.0",
"jest": "^29.5.0",
"jest-light-runner": "^0.6.0",
"prettier": "^3.0.0",
"ts-jest": "^29.1.0",
"tsx": "^4.10.2",
"typescript": "^5.1.3"
},
"licenses": [
{
"type": "BSD-2-Clause",
"url": "https://opensource.org/license/bsd-2-clause/"
}
]
}