UNPKG

iota-ternary

Version:

Fast utility functions for conversion between trytes, trits and bytes

50 lines (49 loc) 1.59 kB
{ "name": "iota-ternary", "version": "0.3.2", "description": "Fast utility functions for conversion between trytes, trits and bytes", "main": "./dist/index.js", "types": "./dist/index.d.ts", "scripts": { "prepare": "npm run build", "build": "tsc --project tsconfig.json", "test": "mocha test/**/*.spec.ts --require ts-node/register", "test:watch": "npm run test -- --watch --watch-extensions=ts", "bench:bytes-to-trits": "node bench/bytes-to-trits", "bench:trits-to-bytes": "node bench/trits-to-bytes", "bench:trytes-to-trits": "node bench/trytes-to-trits", "bench:trits-to-trytes": "node bench/trits-to-trytes", "bench:number-to-trits": "node bench/number-to-trits", "bench:trits-to-number": "node bench/trits-to-number", "bench:trytes-to-number": "node bench/trytes-to-number", "bench:number-to-trytes": "node bench/number-to-trytes" }, "repository": { "type": "git", "url": "git+https://github.com/alexpods/iota-ternary.git" }, "keywords": [ "iota", "ternary", "trits", "trytes", "conversion" ], "author": "alexpods <alexey.podskrebyshev@gmail.com>", "license": "Apache-2.0", "bugs": { "url": "https://github.com/alexpods/iota-ternary/issues" }, "homepage": "https://github.com/alexpods/iota-ternary#readme", "devDependencies": { "@types/chai": "^4.1.1", "@types/mocha": "^2.2.46", "@types/node": "^9.3.0", "benchmark": "^2.1.4", "chai": "^4.1.2", "iota.lib.js": "^0.4.6", "mocha": "^5.0.0", "ts-node": "^4.1.0", "typescript": "^2.6.2" } }