-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
81 lines (81 loc) · 2.37 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
75
76
77
78
79
80
81
{
"name": "bigdecimal.js",
"version": "1.3.1",
"description": "A BigDecimal implementation with native BigInts",
"exports": {
"import": "./lib/bigdecimal.mjs",
"require": "./lib/bigdecimal.js",
"types": "./lib/bigdecimal.d.ts"
},
"main": "lib/bigdecimal.js",
"module": "lib/bigdecimal.mjs",
"scripts": {
"test": "mocha --require ts-node/register --require source-map-support/register -t 100000 test/**/**/*.js",
"coverage": "nyc --reporter=lcov npm run test",
"precompile": "rimraf lib",
"compile": " npm run compile:cjs && npm run compile:esm && npm run prepareESM",
"compile:esm": "tsc --module es2020 --outDir lib/esm",
"compile:cjs": "tsc --module commonjs --outDir lib",
"clean": "rimraf docs lib",
"predocs": "rimraf docs",
"docs": "typedoc --options typedoc.json",
"docs:w": "typedoc --watch --options typedoc.json",
"lint:ci": "eslint --ext .ts .",
"lint": "eslint --cache --fix .",
"benchmark": "node benchmarks",
"generate-test-files": "node util/generateTestFiles.js",
"prepareESM": "mv lib/esm/bigdecimal.js lib/bigdecimal.mjs && rm -rf lib/esm",
"prepublish": "npm run compile"
},
"keywords": [
"bigdecimal",
"decimal",
"math",
"arbitrary",
"precision",
"number",
"arithmetic"
],
"files": [
"lib/bigdecimal.js",
"lib/bigdecimal.mjs",
"lib/bigdecimal.d.ts"
],
"types": "lib/bigdecimal.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/srknzl/bigdecimal.js.git"
},
"author": {
"name": "Serkan Özel",
"email": "serkanozel380@gmail.com",
"url": "https://github.com/srknzl"
},
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/srknzl/bigdecimal.js/issues"
},
"engines": {
"node": ">=10.4.0"
},
"homepage": "https://srknzl.github.io/bigdecimal.js/",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"benchmark": "^2.1.4",
"big.js": "^6.2.1",
"bigdecimal": "^0.6.1",
"bignumber.js": "^9.1.2",
"chai": "^4.3",
"decimal.js": "^10.4.3",
"eslint": "^8.56.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"rimraf": "^5.0.5",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"typedoc": "^0.25.7",
"typescript": "^5.3.3"
}
}