arisenjs-signature-provider-interface
Version:
An abstract class that implements the ARISENJS SignatureProvider interface, and provides helper methods for interacting with an authenticator using the ARISEN Authentication Transport Protocol Specification.
63 lines (62 loc) • 1.51 kB
JSON
{
"name": "arisenjs-signature-provider-interface",
"version": "1.0.1",
"description": "An abstract class that implements the ARISENJS SignatureProvider interface, and provides helper methods for interacting with an authenticator using the ARISEN Authentication Transport Protocol Specification.",
"author": {
"name": "shikhar"
},
"license": "MIT",
"keywords": [
"signature",
"provider",
"interface",
"bridge",
"arise",
"arisen",
"@arisencore/js"
],
"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": {
"@arisencore/js": "1.0.3",
"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": {}
}
}