{
  "name": "@liqwid2021/liqwid-sdk",
  "version": "1.0.0-alpha.5",
  "description": "A JavaScript SDK for the Liqwid Protocol",
  "license": "UNLICENSED",
  "main": "dist/nodejs/index.js",
  "scripts": {
    "docker": "docker run --rm -it -u $(id -u):$(id -g) -v $(pwd):/code -w /code node:14 bash",
    "fix": "yarn eslint:fix",
    "eslint:fix": "yarn eslint:check --fix",
    "eslint:check": "eslint 'src/**/*.ts' --quiet",
    "qa": "yarn lint && yarn test",
    "lint": "yarn eslint:check",
    "demo": "mkdir -p public && cp examples/web/index.html public && cp dist/browser/liqwid.min.js public",
    "start": "http-server -a 127.0.0.1 -p 8080 public",
    "build": "tsc && npm run rollup",
    "prepare": "yarn build",
    "publish_patch": "npm version patch && npm publish --access public",
    "publish_minor": "npm version minor && npm publish --access public",
    "publish_major": "npm version major && npm publish --access public",
    "rollup": "rollup -c rollup.config.ts",
    "test_log_coverage": "nyc mocha -r ts-node/register ./test/index.*  --timeout 60000",
    "test": "nyc --reporter=lcov mocha -r ts-node/register ./test/index.*  --timeout 60000",
    "coverage": "codecov"
  },
  "repository": {
    "type": "git",
    "url": "https://gitlab.com/liqwid/liqwid-sdk.git"
  },
  "keywords": [
    "liqwid finance",
    "liqwid protocol",
    "decentralized finance",
    "defi",
    "liqwid"
  ],
  "devDependencies": {
    "@rollup/plugin-json": "^4.1.0",
    "@rollup/plugin-node-resolve": "^11.2.1",
    "@types/mocha": "^8.2.2",
    "@types/node": "^14.14.37",
    "@typescript-eslint/eslint-plugin": "^4.20.0",
    "@typescript-eslint/parser": "^4.20.0",
    "@typescript-eslint/typescript-estree": "^4.20.0",
    "codecov": "^3.8.1",
    "eslint": "^7.23.0",
    "ganache-core": "^2.13.2",
    "http-server": "^0.12.3",
    "mocha": "^8.3.2",
    "nyc": "^15.1.0",
    "rollup": "^2.44.0",
    "rollup-plugin-babel-minify": "^10.0.0",
    "rollup-plugin-commonjs": "^10.1.0",
    "rollup-plugin-node-polyfills": "^0.2.1",
    "ts-node": "^9.1.1",
    "typescript": "^4.2.3"
  },
  "dependencies": {
    "ethers": "^5.0.32"
  }
}
