UNPKG

blockbook-client

Version:

Client for interacting with Trezor's blockbook API

84 lines (83 loc) 2.36 kB
{ "name": "blockbook-client", "version": "0.7.8", "description": "Client for interacting with Trezor's blockbook API", "main": "dist/index.cjs.js", "module": "dist/index.es.js", "browser": "dist/index.umd.js", "types": "dist/lib/index.d.ts", "esnext": "dist/lib/index.js", "repository": { "type": "git", "url": "git@github.com:bitaccess/blockbook-client.git" }, "homepage": "https://github.com/bitaccess/blockbook-client#readme", "bugs": { "url": "https://github.com/bitaccess/blockbook-client/issues" }, "keywords": [ "bitcoin", "ethereum", "blockchain", "blockbook" ], "files": [ "dist/", "src/" ], "contributors": [ "Dylan Seago <dylan@bitaccess.co>" ], "license": "MIT", "engines": { "node": ">=8.0.0" }, "scripts": { "lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'", "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"", "prebuild": "rimraf dist", "build": "tsc --build ./tsconfig.build.json && rollup -c rollup.config.js", "start": "rollup -c rollup.config.ts -w", "pretest": "npm run lint", "test": "jest --runInBand", "report-coverage": "cat ./coverage/lcov.info | coveralls", "precommit": "lint-staged", "preversion": "bin/preversion.sh", "version": "npm run build", "postversion": "git push && git push --tags", "release": "npm publish" }, "devDependencies": { "@bitaccess/ts-config": "^1.3.2", "@types/debounce": "^1.2.0", "@types/jest": "^27.0.2", "@types/node": "^10.17.3", "@types/qs": "^6.9.0", "@types/ws": "^7.4.1", "coveralls": "^3.1.1", "jest": "^27.2.4", "jest-circus": "^27.2.4", "jest-config": "^27.2.4", "lint-staged": "^11.2.0", "node-fetch": "^2.6.0", "prettier": "^1.14.3", "rimraf": "^2.6.2", "rollup": "^1.26.3", "rollup-plugin-commonjs": "^10.1.0", "rollup-plugin-json": "^3.1.0", "rollup-plugin-node-resolve": "^4.2.4", "rollup-plugin-sourcemaps": "^0.4.2", "rollup-plugin-typescript2": "^0.27.3", "ts-jest": "^27.0.5", "ts-node": "^8.4.1", "tslint": "^5.20.0", "typescript": "^3.9.9" }, "dependencies": { "@bitaccess/ts-common": "^1.0.0", "axios": "^0.22.0", "io-ts": "^1.10.4", "qs": "^6.9.1", "ws": "^7.5.5" } }