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
60 lines (60 loc) · 1.52 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
{
"name": "decimal128",
"version": "20.1.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",
"sideEffects": false,
"scripts": {
"build": "rollup -c",
"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",
"devDependencies": {
"@rollup/plugin-typescript": "^12.1.1",
"@types/jest": "^29.5.1",
"c8": "^10.1.2",
"jest": "^29.5.0",
"jest-light-runner": "^0.6.0",
"prettier": "^3.0.0",
"rollup": "^4.26.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/"
}
],
"exports": {
".": "./src/Decimal128.mjs"
}
}