forked from jessealama/decimal128
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.35 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
{
"name": "decimal128",
"version": "10.0.0",
"main": "src/decimal128.js",
"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"
},
"sideEffects": false,
"scripts": {
"test": "jest",
"format": "yarn prettier . --write",
"lint": "yarn 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": {
"@types/jest": "^29.5.1",
"c8": "^9.1.0",
"jest": "^29.5.0",
"jest-light-runner": "^0.6.0",
"prettier": "^3.0.0",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3"
},
"licenses": [
{
"type": "BSD-2-Clause",
"url": "https://opensource.org/license/bsd-2-clause/"
}
],
"types": "./src/decimal128.d.mjs",
"exports": {
".": "./src/decimal128.mjs"
}
}