UNPKG

base32-ts

Version:

Base32 encode and decode implementation in Typescript

46 lines (45 loc) 1.08 kB
{ "name": "base32-ts", "version": "1.0.2", "description": "Base32 encode and decode implementation in Typescript", "main": "lib/index.js", "types": "lib/index.d.ts", "scripts": { "build": "tsc --build", "test": "mocha -r ts-node/register tests/**/*.test.ts", "coverage": "nyc -e .ts -x \"tests/**/*.test.ts\" npm run test", "prepare": "npm run build", "prepublishOnly": "npm test", "version": "git add -A src", "postversion": "git push && git push --tags" }, "repository": { "type": "git", "url": "https://github.com/qfaneco/base32-ts.git" }, "keywords": [ "base32", "base32-ts", "rfc3548", "rfc4648", "crockford", "node", "typescript" ], "author": "Quentin Faneco", "license": "MIT", "bugs": { "url": "https://github.com/qfaneco/base32-ts/issues" }, "homepage": "https://github.com/qfaneco/base32-ts#readme", "devDependencies": { "@types/chai": "^4.2.4", "@types/mocha": "^5.2.7", "@types/node": "^12.12.3", "chai": "^4.2.0", "mocha": "^6.2.2", "nyc": "^14.1.1", "ts-node": "^8.4.1", "typescript": "^3.7.3" } }