UNPKG

eosjs-signature-provider-interface

Version:

An abstract class that implements the EOSJS SignatureProvider interface, and provides helper methods for interacting with an authenticator using the EOSIO Authentication Transport Protocol Specification.

78 lines (77 loc) 1.93 kB
{ "name": "eosjs-signature-provider-interface", "version": "0.1.2", "description": "An abstract class that implements the EOSJS SignatureProvider interface, and provides helper methods for interacting with an authenticator using the EOSIO Authentication Transport Protocol Specification.", "author": { "name": "block.one", "url": "https://block.one" }, "contributors": [ "Ryan Wiesjahn", "Tara Tritt", "Randy Torres", "Jeffrey Smith II" ], "license": "MIT", "homepage": "https://github.com/EOSIO/eosjs-signature-provider-interface#readme", "repository": { "type": "git", "url": "git+https://github.com/EOSIO/eosjs-signature-provider-interface.git" }, "bugs": { "url": "https://github.com/EOSIO/eosjs-signature-provider-interface/issues" }, "keywords": [ "signature", "provider", "interface", "bridge", "eos", "eosio", "eosjs" ], "main": "dist/index.js", "scripts": { "build": "yarn lint && tsc -p ./tsconfig.json", "clean-build": "rm -rf dist && yarn build", "test": "jest", "lint": "tslint \"src/**/*.ts{,?}\"", "prepublish": "yarn clean-build" }, "dependencies": { "eosjs": "20.0.0", "uuid": "3.3.2" }, "devDependencies": { "@blockone/tslint-config-blockone": "^4.0.1", "@types/jest": "^24.0.13", "@types/node": "^10.12.12", "@types/uuid": "^3.4.4", "jest": "^24.9.0", "ts-jest": "^24.0.2", "tslib": "^1.9.3", "tslint": "^5.11.0", "typescript": "^3.4.5" }, "jest": { "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$", "moduleFileExtensions": [ "ts", "tsx", "js", "jsx" ], "collectCoverageFrom": [ "src/**" ], "coverageReporters": [ "json-summary", "text", "text-summary" ], "transform": { "^.+\\.tsx?$": "ts-jest" }, "coverageThreshold": {} } }