UNPKG

slip44

Version:

TypeScript version of https://github.com/satoshilabs/slips/blob/master/slip-0044.md

95 lines 2.21 kB
{ "name": "slip44", "version": "3.0.34", "description": "TypeScript version of https://github.com/satoshilabs/slips/blob/master/slip-0044.md", "author": "futpib <futpib@gmail.com>", "license": "MIT", "homepage": "https://github.com/futpib/slip44", "keywords": [ "SLIP-0044", "BIP-0044", "slip44", "bip44", "coin type", "bip44-constants", "typescript", "derivation path", "derive" ], "nodemonConfig": { "ext": "ts,tsx" }, "scripts": { "generate": "ts-node ./src/slip44.generate.ts && xo --fix ./src/slip44.ts", "build": "tsc", "test": "xo && nyc ava", "prepare": "husky install || true", "prepublish": "yarn build" }, "main": "lib/index.js", "types": "lib/index.d.ts", "devDependencies": { "@ava/typescript": "^2.0.0", "@types/node": "^16.11.12", "@types/node-fetch": "^2", "@types/sinon": "^10.0.6", "ava": "^3.15.0", "bip44-constants": "^86.0.0", "coveralls": "^3.1.1", "eslint-config-xo-overrides": "^1.5.0", "husky": "^7.0.4", "node-fetch": "^2", "nodemon": "^2.0.15", "nyc": "^15.1.0", "outdent": "^0.8.0", "remark": "^13", "remark-gfm": "^1", "remark-parse": "^9", "remark-stringify": "^9", "sinon": "^12.0.1", "ts-node": "^10.4.0", "typescript": "^4.5.2", "unified": "^9.1.0", "unist-util-visit": "^2", "xo": "^0.47.0", "zod": "^3.11.6" }, "engines": { "node": ">= 12.2" }, "xo": { "extends": [ "eslint-config-xo-overrides" ], "ignore": "lib/*", "plugins": [ "@typescript-eslint" ], "rules": { "new-cap": "off", "@typescript-eslint/object-curly-spacing": [ "error", "always" ], "@typescript-eslint/comma-dangle": [ "error", "always-multiline" ], "@typescript-eslint/consistent-type-imports": "error", "import/extensions": "off", "unicorn/prefer-module": "off" } }, "ava": { "ignoredByWatcher": [ "**/*.fixtures/*.edited.*" ], "typescript": { "rewritePaths": { "src/": "lib/" }, "compile": "tsc" } }, "packageManager": "yarn@3.1.1" }