{
  "name": "radixdlt-js",
  "version": "0.0.5",
  "description": "A Javascript Client library for interacting with a RADIX Distributed Ledger.",
  "main": "build/main/index.js",
  "typings": "build/module/index.d.ts",
  "module": "build/module/index.js",
  "browser": {
    "./build/module/index.js": "./build/main/index.js"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/radixdlt/radixdlt-js.git"
  },
  "keywords": [
    "typescript",
    "es6",
    "starter",
    "library",
    "universal",
    "umd",
    "commonjs",
    "radix",
    "dlt"
  ],
  "author": "Mauricio Urraco <mauricio@radixdlt.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/radixdlt/radixdlt-js/issues"
  },
  "homepage": "https://github.com/radixdlt/radixdlt-js",
  "scripts": {
    "info": "npm-scripts-info",
    "build": "run-s clean && run-p build:*",
    "build:main": "tsc -p tsconfig.json",
    "build:module": "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--disabled--:lint": "tslint --project . && prettier \"src/**/*.ts\" --list-different",
    "test:unit": "mocha -r ts-node/register src/**/*.spec.ts",
    "doc": "run-s doc:html && open build/docs/index.html",
    "doc:html": "typedoc src/ --target ES6 --mode file --out build/docs",
    "doc:json": "typedoc src/ --target ES6 --mode file --json build/docs/typedoc.json",
    "doc:publish": "gh-pages -m \"[ci skip] Updates\" -d build/docs",
    "watch": "run-s clean build && run-p \"build:main -- -w\" \"build:module -- -w\" \"test:unit -- --watch\"",
    "reset": "git clean -dfx && git reset --hard && npm i",
    "clean": "rimraf build test"
  },
  "scripts-info": {
    "info": "Display information about the package scripts",
    "build": "Clean and rebuild the project",
    "fix": "Try to automatically fix any linting problems",
    "doc": "Generate HTML API documentation and open it in a browser",
    "doc:json": "Generate API documentation in typedoc JSON format",
    "test": "Lint and unit test the project",
    "watch": "Watch and rebuild the project on save, then rerun relevant tests",
    "reset": "Delete all untracked files and reset the repo to the last commit"
  },
  "engines": {
    "node": ">=8.9"
  },
  "dependencies": {
    "axios": "^0.18.0",
    "bn.js": "^4.11.8",
    "browserfs": "^1.4.3",
    "bs58": "^4.0.1",
    "buffer-reader": "^0.1.0",
    "bufferutil": "^4.0.0",
    "decimal.js": "^10.0.1",
    "elliptic": "^6.4.1",
    "fs-extra": "^7.0.0",
    "long": "^4.0.0",
    "nedb": "^1.8.0",
    "nedb-promises": "^3.0.1",
    "promise-retry": "^1.1.1",
    "rpc-websockets": "^4.1.1",
    "rxjs": "^6.2.2",
    "rxjs-compat": "^6.2.2",
    "typescript-map": "0.0.6",
    "utf-8-validate": "^5.0.1"
  },
  "devDependencies": {
    "@reactivex/rxjs": "^6.2.2",
    "@types/bs58": "^3.0.30",
    "@types/chai": "^4.1.4",
    "@types/fs-extra": "^5.0.4",
    "@types/jest": "^22.0.0",
    "@types/long": "^4.0.0",
    "@types/mocha": "^5.2.5",
    "@types/nedb": "^1.8.5",
    "@types/node": "^10.0.3",
    "chai": "^4.1.2",
    "gh-pages": "^1.2.0",
    "mocha": "^5.2.0",
    "npm-run-all": "^4.1.3",
    "npm-scripts-info": "^0.3.9",
    "prettier": "^1.13.4",
    "rimraf": "^2.6.2",
    "standard-version": "^4.4.0",
    "ts-node": "^7.0.1",
    "tslint": "^5.10.0",
    "tslint-config-prettier": "^1.13.0",
    "tslint-immutable": "^4.5.4",
    "typedoc": "^0.12.0",
    "types-bn": "0.0.1",
    "typescript": "^3.0.1"
  },
  "prettier": {
    "singleQuote": true,
    "semi": false
  }
}
