UNPKG

@hicaru/ripemd160.js

Version:

A pure javascript implementation of ripemd160 hash function.

67 lines (66 loc) 1.45 kB
{ "name": "@hicaru/ripemd160.js", "version": "0.0.9", "description": "A pure javascript implementation of ripemd160 hash function.", "main": "dist/index.js", "typings": "dist/index.d.ts", "repository": "git@github.com:bearby-wallet/ripemd160-js.git", "author": "Rinat <lich666black@gmail.com>", "license": "MIT", "types": "dist/index.d.ts", "module": "dist/index.js", "files": [ "dist/*", "lib/*", "tests/*", "index.js", "index.ts" ], "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "default": "./dist/index.js" } }, "browser": { "crypto": false }, "private": false, "keywords": [ "string", "strings", "ripemd160", "ripe160", "bitcoin", "bytes", "cryptography" ], "devDependencies": { "@rollup/plugin-node-resolve": "^13.3.0", "@rollup/plugin-typescript": "^8.4.0", "@types/jest": "^28.1.8", "jest": "^28.1.3", "ripemd160": "^2.0.2", "rollup": "^2.78.1", "rollup-plugin-terser": "^7.0.2", "ts-jest": "^28.0.8", "tslib": "^2.4.0", "typescript": "^4.7.4" }, "scripts": { "build": "npm run test && rollup -c", "dev": "rollup -c -w", "test": "jest" }, "jest": { "transform": { ".(ts|tsx)": "ts-jest" }, "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$", "moduleFileExtensions": [ "ts", "js" ] } }