Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Update dependencies #140

Merged
merged 4 commits into from
Jan 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,4 @@ jobs:
npm run compile
- name: Tests
run: |
npm run coverage
- name: Publish to Codecov
uses: codecov/codecov-action@v2
with:
files: coverage/lcov.info
npm run test
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

[![NPM Version][npm-image]][npm-url]
[![NPM Downloads][downloads-image]][downloads-url]
[![codecov](https://codecov.io/gh/srknzl/bigdecimal.js/branch/main/graph/badge.svg?token=Y9PL8TFV2L)](https://codecov.io/gh/srknzl/bigdecimal.js)

[BigInt](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt) based BigDecimal implementation for Node.js 10.4 and above.
This implementation is inspired from java BigDecimal class. This implementation is faster than popular big decimal libraries for most operations.
Expand Down
19 changes: 8 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
"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",
Expand Down Expand Up @@ -59,22 +58,20 @@
},
"homepage": "https://srknzl.github.io/bigdecimal.js/",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"@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.0",
"chai": "^4.3",
"decimal.js": "^10.4.2",
"eslint": "^8.28.0",
"mocha": "^10.1.0",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"eslint": "^8.56.0",
"mocha": "^10.2.0",
"rimraf": "^5.0.5",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"typedoc": "^0.23.21",
"typescript": "^4.9.3"
"ts-node": "^10.9.2",
"typedoc": "^0.25.7",
"typescript": "^5.3.3"
}
}