@elysium-onchain-id/identity-sdk
Version:
Interact with BlockChain Identities.
68 lines (67 loc) • 1.99 kB
JSON
{
"name": "@elysium-onchain-id/identity-sdk",
"version": "1.7.5",
"description": "Interact with BlockChain Identities.",
"scripts": {
"lint": "eslint src/**/**.ts",
"lint:fix": "eslint src/**/**.ts --fix",
"build": "rimraf dist && tsc -p tsconfig.build.json",
"build:watch": "rimraf dist && tsc -p tsconfig.build.json -w",
"build:docs": "typedoc --options ./typedoc.json ./src",
"test": "npm run test:unit && npm run test:integration && npm run test:e2e",
"test:e2e": "cross-env NODE_ENV=test jest --config ./jest.config.e2e.js --runInBand",
"test:e2e:watch": "cross-env npm run test:e2e -- --watch",
"test:unit": "cross-env NODE_ENV=test jest --config ./jest.config.unit.js --coverage",
"test:unit:watch": "npm run test:unit -- --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/onchain-id/identity-sdk.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": "> 8.0.0",
"npm": "> 5.0.0"
},
"keywords": [
"ONCHAINID",
"TREX",
"Identities",
"ERC734",
"ERC735"
],
"author": "OnchainID Organization",
"license": "SEE LICENSE IN LICENSE.md",
"dependencies": {
"@onchain-id/solidity": "2.2.1",
"ethers": "5.8.0"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/nock": "^11.1.0",
"@types/node": "^18.16.19",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"commitlint": "^19.8.0",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"ganache": "^6.4.5",
"husky": "^4.3.8",
"jest": "^29.5.0",
"jest-extended": "^4.0.0",
"nock": "^13.3.1",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typedoc": "^0.28.2",
"typescript": "^5.1.6"
},
"husky": {
"hooks": {
"commit-msg": "cross-env-shell node ./scripts/commit-msg.js $HUSKY_GIT_PARAMS && commitlint -E HUSKY_GIT_PARAMS"
}
}
}