{
  "name": "xrp-tx-explainer",
  "version": "0.2.1",
  "description": "Library for explaining XRP ledger transactions and metadata.",
  "keywords": [
    "xrp",
    "transaction",
    "explain",
    "metadata",
    "ripple"
  ],
  "homepage": "https://github.com/xpring-eng/txexplainer/blob/master/README.md",
  "bugs": {
    "url": "https://github.com/xpring-eng/txexplainer/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/xpring-eng/txexplainer.git"
  },
  "license": "MIT",
  "author": "Shashvat Srivastava",
  "contributors": [
    "Shashvat Srivastava <ssrivastava@ripple.com>"
  ],
  "main": "dist/index.js",
  "browser": "./webpack/XrpTxExplainer.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist",
    "webpack"
  ],
  "scripts": {
    "build": "rm -rf dist && tsc -p tsconfig.build.json",
    "build-all": "npm run clean && npm run build && npm run webpack",
    "clean": "rm -rf build dist webpack",
    "gen-docs": "typedoc --json src",
    "gen-examples": "ts-node ./scripts/examples.ts",
    "lint": "eslint . --ext .ts --fix && prettier --write '**/*.{md,json}'",
    "lintNoFix": "eslint . --ext .ts && prettier --check '**/*.{md,json}'",
    "prepublish": "npm run lintNoFix && npm test && npm run build-all",
    "test": "nyc mocha 'test/**/*.test.ts'",
    "watch": "rm -rf dist && tsc --watch -p tsconfig.build.json",
    "webpack": "rm -rf webpack && webpack",
    "webpack-test": "npm run webpack && open ./webpack/index.html"
  },
  "dependencies": {},
  "devDependencies": {
    "@babel/core": "^7.10.5",
    "@babel/plugin-proposal-class-properties": "^7.10.4",
    "@babel/plugin-transform-runtime": "^7.10.5",
    "@babel/preset-env": "^7.10.4",
    "@babel/preset-typescript": "^7.10.4",
    "@types/chai": "4.2.12",
    "@types/mocha": "8.0.1",
    "@types/node": "^14.0.19",
    "@types/ws": "^7.2.6",
    "@typescript-eslint/eslint-plugin": "^3.4.0",
    "@typescript-eslint/parser": "^3.4.0",
    "@xpring-eng/eslint-config-base": "^0.8.0",
    "babel-loader": "^8.1.0",
    "chai": "4.2.0",
    "eslint": "^7.5.0",
    "eslint-plugin-array-func": "^3.1.6",
    "eslint-plugin-eslint-comments": "^3.2.0",
    "eslint-plugin-import": "^2.21.2",
    "eslint-plugin-jsdoc": "^28.5.1",
    "eslint-plugin-mocha": "^7.0.1",
    "eslint-plugin-node": "^11.1.0",
    "eslint-plugin-prettier": "^3.1.4",
    "eslint-plugin-tsdoc": "^0.2.6",
    "html-webpack-plugin": "^4.3.0",
    "mocha": "^8.0.1",
    "nyc": "15.1.0",
    "prettier": "^2.0.5",
    "ts-loader": "^8.0.1",
    "ts-node": "8.10.2",
    "typedoc": "^0.17.8",
    "typescript": "^3.9.7",
    "webpack": "^4.43.0",
    "webpack-cli": "^3.3.12",
    "ws": "^7.3.1"
  },
  "engines": {
    "node": ">= 12.0.0"
  }
}
