truffle-hdwallet-provider-klaytn
Version:
HD Wallet-enabled Web3 provider for Klaytn
84 lines (83 loc) • 2.12 kB
JSON
{
"name": "truffle-hdwallet-provider-klaytn",
"description": "HD Wallet-enabled Web3 provider for Klaytn",
"license": "MIT",
"author": "Klaytn Team <developer@klaytn.com>",
"homepage": "https://github.com/klaytn/truffle-hdwallet-provider-klaytn#readme",
"repository": {
"type": "git",
"url": "https://github.com/klaytn/truffle-hdwallet-provider-klaytn"
},
"bugs": {
"url": "https://github.com/klaytn/truffle-hdwallet-provider-klaytn/issues"
},
"version": "1.4.2",
"main": "dist/index.js",
"scripts": {
"build": "tsc && cp -r ./src/subproviders ./dist && cp -r ./src/util ./dist",
"prepare": "yarn build",
"test": "yarn build && mocha --exit -r ts-node/register test/**/*.test.ts"
},
"engines": {
"node": ">=12"
},
"types": "dist/index.d.ts",
"dependencies": {
"@trufflesuite/web3-provider-engine": "15.0.13-1",
"any-promise": "1.3.0",
"bindings": "1.5.0",
"caver-js": "1.6.3",
"ethereum-cryptography": "0.1.3",
"ethereum-protocol": "1.0.1",
"ethereumjs-util": "6.2.0",
"ethereumjs-wallet": "1.0.1"
},
"devDependencies": {
"@types/bip39": "2.4.2",
"@types/ethereum-protocol": "1.0.0",
"@types/ethereumjs-util": "5.2.0",
"@types/mocha": "5.2.7",
"@types/web3": "1.0.20",
"@types/web3-provider-engine": "14.0.0",
"@typescript-eslint/eslint-plugin": "4.28.4",
"@typescript-eslint/parser": "4.28.4",
"eslint": "5.16.0",
"eslint-plugin-react-hooks": "4.2.0",
"ganache-core": "2.13.0",
"husky": "4.3.0",
"lint-staged": "10.5.0",
"mocha": "9.0.2",
"prettier": "2.0.5",
"ts-node": "9.0.0",
"typescript": "4.1.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix"
],
"*.ts": [
"prettier --write",
"eslint --fix"
],
"*.tsx": [
"prettier --write",
"eslint --fix"
]
},
"publishConfig": {
"access": "public"
},
"keywords": [
"klaytn",
"hd",
"mnemonic",
"provider",
"wallet"
]
}