123456789101112131415161718192021222324252627282930313233 |
- {
- "name": "ripple-address-codec",
- "version": "4.2.5",
- "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 --verbose false --silent=false ./src/*.test.js",
- "lint": "eslint . --ext .ts",
- "clean": "rm -rf ./dist && rm -rf tsconfig.tsbuildinfo"
- },
- "prettier": "@xrplf/prettier-config",
- "engines": {
- "node": ">= 10"
- },
- "gitHead": "b3d3bc2f99c21336c32d234026ddff79f16e8194"
- }
|