mirror of
https://github.com/Xahau/xahau.js.git
synced 2025-11-30 09:05:50 +00:00
43 lines
898 B
JSON
43 lines
898 B
JSON
{
|
|
"name": "ripple-keypairs",
|
|
"version": "1.3.1",
|
|
"description": "Cryptographic key pairs for the XRP Ledger",
|
|
"scripts": {
|
|
"build": "tsc -b",
|
|
"test": "jest --verbose false --silent=false ./test/*.test.ts",
|
|
"clean": "rm -rf ./dist && rm -rf tsconfig.tsbuildinfo",
|
|
"lint": "eslint . --ext .ts",
|
|
"prepublish": "npm run lint && npm test"
|
|
},
|
|
"files": [
|
|
"dist/*",
|
|
"src/*"
|
|
],
|
|
"main": "dist/",
|
|
"directories": {
|
|
"test": "test"
|
|
},
|
|
"dependencies": {
|
|
"bn.js": "^5.1.1",
|
|
"brorand": "^1.0.5",
|
|
"elliptic": "^6.5.4",
|
|
"hash.js": "^1.0.3",
|
|
"ripple-address-codec": "^4.3.1"
|
|
},
|
|
"keywords": [
|
|
"ripple",
|
|
"xrp",
|
|
"xrp ledger",
|
|
"xrpl"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:XRPLF/xrpl.js.git"
|
|
},
|
|
"license": "ISC",
|
|
"prettier": "@xrplf/prettier-config",
|
|
"engines": {
|
|
"node": ">= 16"
|
|
}
|
|
}
|