{
  "name": "sxsj",
  "version": "1.1.32",
  "description": "Persistent transaction handling for the XRP Ledger",
  "main": "build/main/index.js",
  "typings": "build/main/index.d.ts",
  "module": "build/module/index.js",
  "repository": "https://github.com/sologenic/sologenic-xrpl-stream-js",
  "license": "MIT",
  "keywords": [],
  "scripts": {
    "describe": "npm-scripts-info",
    "build": "run-s clean && run-p build:*",
    "build:main": "./node_modules/.bin/tsc -p tsconfig.json",
    "build:module": "./node_modules/.bin/tsc -p tsconfig.module.json",
    "fix": "run-s fix:*",
    "fix:prettier": "prettier \"src/**/*.ts\" --write",
    "fix:tslint": "tslint --fix --project .",
    "test": "run-s build test:*",
    "test:lint": "tslint --project .",
    "test:unit": "nyc ava --verbose",
    "watch": "run-s clean build:main && run-p \"build:main -- -w\" \"test:unit -- --watch\"",
    "cov": "run-s build test:unit cov:html && open-cli coverage/index.html",
    "cov:html": "nyc report --reporter=html",
    "cov:send": "nyc report --reporter=lcov && codecov",
    "cov:check": "nyc report && nyc check-coverage --lines 100 --functions 100 --branches 100",
    "doc": "run-s doc:html && run-s doc:markdown && open-cli docs/index.html",
    "doc:html": "typedoc src/ --exclude **/*.spec.ts --target ES6 --plugin none --mode file --out docs/html",
    "doc:markdown": "typedoc src/ --exclude **/*.spec.ts --target ES6 --plugin typedoc-plugin-markdown --mode file --out docs/markdown",
    "doc:json": "typedoc src/ --exclude **/*.spec.ts --exclude node_modules/** --target ES6 --mode file --json docs/typedoc.json",
    "doc:publish": "gh-pages -m \"[ci skip] Updates\" -d docs",
    "version": "standard-version",
    "reset": "git clean -dfx && git reset --hard && npm i",
    "clean": "trash build test",
    "prepare-release": "run-s reset test cov:check doc:html version doc:publish"
  },
  "scripts-info": {
    "info": "Display information about the package scripts",
    "build": "Clean and rebuild the project",
    "fix": "Try to automatically fix any linting problems",
    "test": "Lint and unit test the project",
    "watch": "Watch and rebuild the project on save, then rerun relevant tests",
    "cov": "Rebuild, run tests, then create and open the coverage report",
    "doc": "Generate HTML API documentation and open it in a browser",
    "doc:json": "Generate API documentation in typedoc JSON format",
    "version": "Bump package.json version, update CHANGELOG.md, tag release",
    "reset": "Delete all untracked files and reset the repo to the last commit",
    "prepare-release": "One-step: clean, build, test, publish docs, and prep a release"
  },
  "engines": {
    "node": ">=8.9"
  },
  "dependencies": {
    "@ledgerhq/hw-app-xrp": "6.24.1",
    "@ledgerhq/hw-transport-webusb": "6.24.1",
    "@types/ioredis": "^4.14.7",
    "@types/mathjs": "6.0.4",
    "@types/node": "12.11.5",
    "@types/node-fetch": "^2.5.4",
    "@types/request": "^2.48.4",
    "@types/underscore": "^1.9.4",
    "@types/uuid": "^3.4.7",
    "axios": "^0.21.1",
    "crypto": "^1.0.1",
    "dcent-web-connector": "^0.10.1",
    "dns": "^0.2.2",
    "ioredis": "^4.14.1",
    "mathjs": "6.6.0",
    "moment": "^2.29.1",
    "net": "^1.0.2",
    "node-fetch": "^2.6.1",
    "request": "^2.88.2",
    "ripple-binary-codec": "^1.3.0",
    "stream": "0.0.2",
    "tls": "0.0.1",
    "ts-node": "^8.8.1",
    "typedoc-plugin-markdown": "^2.2.16",
    "underscore": "^1.9.2",
    "uuid": "^3.4.0",
    "xrpl": "^2.1.1"
  },
  "devDependencies": {
    "@bitjson/npm-scripts-info": "^1.0.0",
    "@bitjson/typedoc": "^0.15.0-0",
    "@istanbuljs/nyc-config-typescript": "^0.1.3",
    "ava": "2.2.0",
    "codecov": "^3.6.5",
    "cz-conventional-changelog": "^2.1.0",
    "gh-pages": "^2.2.0",
    "npm-run-all": "^4.1.5",
    "nyc": "^14.1.1",
    "open-cli": "^5.0.0",
    "prettier": "^1.18.2",
    "standard-version": "^6.0.1",
    "trash-cli": "^3.0.0",
    "tslint": "^5.18.0",
    "tslint-config-prettier": "^1.18.0",
    "tslint-immutable": "^6.0.1",
    "typedoc": "^0.16.9",
    "typescript": "^3.9.10"
  },
  "ava": {
    "failFast": true,
    "files": [
      "build/main/**/*.spec.js"
    ],
    "sources": [
      "build/main/**/*.js"
    ]
  },
  "config": {
    "commitizen": {
      "path": "cz-conventional-changelog"
    }
  },
  "prettier": {
    "singleQuote": true
  },
  "nyc": {
    "extends": "@istanbuljs/nyc-config-typescript",
    "exclude": [
      "**/*.spec.js"
    ]
  }
}
