mirror of
https://github.com/Xahau/xahau.js.git
synced 2025-11-04 13:05:49 +00:00
Bumps [jest](https://github.com/facebook/jest) and [ts-jest](https://github.com/kulshekhar/ts-jest). These dependencies needed to be updated together. Updates `jest` from 24.9.0 to 25.1.0 - [Release notes](https://github.com/facebook/jest/releases) - [Changelog](https://github.com/facebook/jest/blob/master/CHANGELOG.md) - [Commits](https://github.com/facebook/jest/compare/v24.9.0...v25.1.0) Updates `ts-jest` from 24.3.0 to 25.0.0 - [Release notes](https://github.com/kulshekhar/ts-jest/releases) - [Changelog](https://github.com/kulshekhar/ts-jest/blob/master/CHANGELOG.md) - [Commits](https://github.com/kulshekhar/ts-jest/compare/v24.3.0...v25.0.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
40 lines
859 B
JSON
40 lines
859 B
JSON
{
|
|
"name": "ripple-address-codec",
|
|
"version": "4.1.0",
|
|
"description": "encodes/decodes base58 encoded XRP Ledger identifiers",
|
|
"files": [
|
|
"dist/*",
|
|
"build/*"
|
|
],
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"base-x": "3.0.7",
|
|
"create-hash": "^1.1.2"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/ripple/ripple-address-codec.git"
|
|
},
|
|
"prepublish": "tsc",
|
|
"prepublishOnly": "tslint -p ./ && jest",
|
|
"scripts": {
|
|
"compile": "tsc",
|
|
"test": "jest",
|
|
"lint": "tslint -p ./"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^24.0.18",
|
|
"@types/node": "^13.1.8",
|
|
"jest": "^25.1.0",
|
|
"ts-jest": "^25.0.0",
|
|
"tslint": "^5.19.0",
|
|
"tslint-eslint-rules": "^5.4.0",
|
|
"typescript": "^3.7.4"
|
|
},
|
|
"engines": {
|
|
"node": ">= 10"
|
|
}
|
|
}
|