mirror of
https://github.com/Xahau/xahau.js.git
synced 2025-11-04 13:05:49 +00:00
42 lines
929 B
JSON
42 lines
929 B
JSON
{
|
|
"name": "ripple-address-codec",
|
|
"version": "4.1.3",
|
|
"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.9",
|
|
"create-hash": "^1.1.2"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:XRPLF/xrpl.js.git"
|
|
},
|
|
"prepublish": "tsc -b",
|
|
"prepublishOnly": "tslint -b ./ && jest",
|
|
"scripts": {
|
|
"build": "tsc -b",
|
|
"test": "jest",
|
|
"lint": "tslint -p ./",
|
|
"clean": "rm -rf ./dist && rm -rf tsconfig.tsbuildinfo"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^27.0.2",
|
|
"@types/node": "^16.4.3",
|
|
"jest": "^26.6.3",
|
|
"ts-jest": "^26.4.4",
|
|
"tslint": "^5.19.0",
|
|
"tslint-eslint-rules": "^5.4.0",
|
|
"typescript": "^4.4.4"
|
|
},
|
|
"engines": {
|
|
"node": ">= 10",
|
|
"npm": ">=7.0.0"
|
|
}
|
|
}
|