-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
58 lines (58 loc) · 1.56 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
{
"name": "financial-number",
"version": "4.0.4",
"description": "Do math with money! Without risking loss of data to floating point representations!",
"main": "index.cjs",
"module": "index.mjs",
"types": "./index.d.ts",
"exports": {
".": {
"require": "./index.cjs",
"import": "./index.mjs",
"types": "./index.d.ts"
},
"./package.json": "./package.json"
},
"scripts": {
"test:node": "tsm test/test.ts | tap-color",
"test:readme": "npm run build:cjs && jsmd readme.md",
"test:types": "tsc --noEmit",
"test": "run-p test:*",
"build:cjs": "esbuild index.ts --bundle --format=cjs --outfile=esbuild-bundle.cjs",
"build:esm": "esbuild index.ts --bundle --format=esm --outfile=index.mjs",
"build:types": "tsc index.ts --emitDeclarationOnly --declaration",
"build": "run-p build:*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TehShrike/financial-number.git"
},
"keywords": [
"financial",
"arithmetic",
"math",
"money",
"number",
"bigint",
"bignumber"
],
"author": "TehShrike",
"license": "WTFPL",
"bugs": {
"url": "https://github.com/TehShrike/financial-number/issues"
},
"homepage": "https://github.com/TehShrike/financial-number#readme",
"devDependencies": {
"@types/tape": "^4.13.2",
"esbuild": "^0.14.39",
"jsmd": "^1.1.0",
"npm-run-all": "^4.1.5",
"tap-color": "^1.2.0",
"tape": "4.2.2",
"tsm": "^2.2.1",
"typescript": "^4.6.4"
},
"dependencies": {
"financial-arithmetic-functions": "^3.2.0"
}
}