UNPKG

@libra-opensource/client-sdk-typescript

Version:
75 lines (74 loc) 1.95 kB
{ "name": "@libra-opensource/client-sdk-typescript", "version": "1.0.8", "description": "Diem client SDK", "main": "dist/index.js", "types": "dist/index.d.ts", "repository": { "type": "git", "url": "git+https://github.com/diem/client-sdk-typescript.git" }, "keywords": [ "diem", "library", "crypto", "SDK" ], "author": "Diem Association <info@diem.com>", "license": "MIT", "files": [ "dist/**/*" ], "scripts": { "build": "tsc", "build-with-esmodules": "tsc --module esnext", "test": "jest --verbose --coverage", "test:ci": "jest --verbose", "test:watch": "jest --watch", "format": "prettier --write .", "format:check": "prettier --check .", "lint": "eslint --fix .", "lint:check": "eslint .", "prepublishOnly": "npm run build && npm run format:check && npm run lint:check" }, "dependencies": { "axios": "^0.21.1", "bech32": "^1.1.4", "bip39": "^3.0.2", "elliptic": "^6.5.3", "json-bigint": "^1.0.0", "sha3": "^2.1.3", "ts-proto": "^1.37.0", "util": "^0.12.3" }, "devDependencies": { "@types/elliptic": "^6.4.12", "@types/inquirer": "^7.3.1", "@types/jest": "^26.0.14", "@types/json-bigint": "^1.0.0", "@typescript-eslint/eslint-plugin": "^3.10.1", "@typescript-eslint/parser": "^3.10.1", "eslint": "^7.10.0", "husky": "^4.3.0", "inquirer": "^7.3.3", "jest": "^26.4.2", "nock": "^13.0.4", "prettier": "^2.1.2", "ts-jest": "^26.4.1", "typescript": "^3.9.6", "yargs": "^15.4.1" }, "husky": { "hooks": { "pre-commit": "npm run build && npm run test:ci && npm run format:check && npm run lint:check", "pre-push": "npm run test:ci" } }, "bugs": { "url": "https://github.com/diem/client-sdk-typescript/issues" }, "homepage": "https://github.com/diem/client-sdk-typescript#readme", "directories": { "test": "tests" } }