UNPKG

@investorid/identity-sdk

Version:
77 lines (76 loc) 1.79 kB
{ "name": "@investorid/identity-sdk", "version": "0.4.11", "description": "Interact with BlockChain Identities.", "scripts": { "lint": "eslint src/**/**.ts", "build": "tsc && npm run docs", "docs": "typedoc --options ./typedoc.json ./src", "test": "mocha -r ts-node/register -r test/init-test.ts test/**/*.test.ts", "test:cov": "nyc npm test ; nyc report --reporter=lcov" }, "repository": { "type": "git", "url": "https://github.com/investorid/identity-sdk.git" }, "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist" ], "engines": { "node": "> 8.0.0", "npm": "> 5.0.0" }, "keywords": [ "InvestorID", "TREX", "Identities", "ERC725", "ERC735" ], "author": "InvestorID Organization", "license": "SEE LICENSE IN LICENSE.md", "dependencies": { "axios": "^0.19.0", "ethers": "^4.0.33" }, "devDependencies": { "@types/chai": "^4.1.7", "@types/chai-as-promised": "^7.1.1", "@types/mocha": "^5.2.7", "@types/nock": "^9.3.1", "@types/node": "^10.14.10", "@typescript-eslint/eslint-plugin": "^1.11.0", "@typescript-eslint/parser": "^1.11.0", "chai": "^4.2.0", "chai-as-promised": "^7.1.1", "commitlint": "^8.1.0", "eslint": "^5.16.0", "husky": "^3.0.2", "mocha": "^6.2.0", "nock": "^10.0.6", "nyc": "^14.1.1", "sinon": "^7.4.0", "ts-node": "^8.3.0", "typedoc": "^0.14.2", "typescript": "^3.5.2" }, "nyc": { "extension": [ ".ts" ], "include": [ "src/**/*.ts" ], "exclude": [ "**/*.d.ts" ], "all": true }, "husky": { "hooks": { "commit-msg": "node ./scripts/commit-msg.js $HUSKY_GIT_PARAMS && commitlint -E HUSKY_GIT_PARAMS" } } }