{
  "name": "airgap-coin-lib",
  "version": "0.9.14",
  "description": "The airgap-coin-lib is a protocol agnostic library to prepare, sign and broadcast cryptocurrency transactions.",
  "main": "dist/index.js",
  "unpkg": "dist/airgap-coin-lib.min.js",
  "types": "dist/index.d.ts",
  "keywords": [
    "airgap",
    "blockchain",
    "crypto",
    "bitcoin",
    "ethereum",
    "aeternity",
    "groestlcoin",
    "tezos",
    "cosmos",
    "polkadot",
    "kusama"
  ],
  "license": "MIT",
  "homepage": "https://www.airgap.it",
  "repository": {
    "type": "git",
    "url": "https://github.com/airgap-it/airgap-coin-lib"
  },
  "scripts": {
    "build": "node scripts/node-module-es-module-interop.js && tsc && node scripts/copy-files-after-build.js && node scripts/make-ts-declaration-files-backwards-compatible.js",
    "build-scripts": "tsc scripts/*.ts",
    "lint": "tslint -c ./tslint.json --project ./tsconfig.json --format stylish --fix",
    "lint:prettier": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
    "lint-ci": "tslint -t json -o lintReport.json --project . || true",
    "lint-ci:prettier": "prettier \"src/**/*.ts\" \"test/**/*.ts\" --list-different",
    "test": "nyc mocha --require ts-node/register --require source-map-support/register --full-trace --timeout 40000 ./test/**/**.spec.ts",
    "test-ci": "nyc --reporter=lcov npm test",
    "test-legacy": "npm run build && mocha --full-trace --timeout 40000 ./test/**/**.spec.js",
    "sonar-scanner": "sonar-scanner",
    "prepare": "npm run build",
    "install-test-dependencies": "node scripts/install-test-deps.js && npm install",
    "install-build-dependencies": "node scripts/install-build-deps.js && npm install",
    "browserify": "browserify ./dist/index.js -s airgapCoinLib > ./dist/airgap-coin-lib.min.js"
  },
  "author": "Papers GmbH <contact@papers.ch> (https://papers.ch)",
  "dependencies": {
    "@polkadot/util": "2.0.1",
    "@polkadot/wasm-crypto": "0.20.1",
    "libsodium-wrappers": "0.7.6"
  },
  "localDependencies": {
    "@taquito/local-forging": "6.3.5-beta.0",
    "hd-wallet-js": "b216450e56954a6e82ace0aade9474673de5d9d5",
    "axios": "0.19.0",
    "bech32": "1.1.3",
    "big-integer": "1.6.45",
    "bitcoinjs-message": "2.1.1",
    "bignumber.js": "9.0.0",
    "bip32": "2.0.4",
    "bip39": "2.5.0",
    "bitgo-utxo-lib": "5d91049fd7a988382df81c8260e244ee56d57aac",
    "bs58check": "2.1.2",
    "create-hash": "1.2.0",
    "cryptocompare": "0.5.0",
    "ethereumjs-tx": "1.3.7",
    "ethereumjs-util": "5.2.0",
    "groestlcoinjs-message": "2.1.0",
    "rlp": "2.2.3",
    "ripemd160": "2.0.2",
    "secp256k1": "3.7.1",
    "validate.js": "0.13.1",
    "utf8": "3.0.0",
    "xxhashjs": "0.2.2"
  },
  "devDependencies": {
    "@types/node": "12.12.6",
    "browserify": "^17.0.0",
    "sonarqube-scanner": "2.5.0",
    "typescript": "3.7.2"
  },
  "buildDependencies": {
    "@types/node": "12.12.6",
    "typescript": "3.7.2",
    "sonarqube-scanner": "2.5.0"
  },
  "testDependencies": {
    "@types/assert": "0.0.31",
    "@types/bip39": "2.4.0",
    "@types/chai": "4.1.7",
    "@types/chai-as-promised": "7.1.0",
    "@types/ethereumjs-util": "5.2.0",
    "@types/jasmine": "2.8.9",
    "@types/mocha": "5.2.5",
    "@types/node": "12.12.6",
    "@types/semver": "6.0.2",
    "@types/underscore": "1.8.9",
    "ajv": "6.10.2",
    "axios": "0.20.0",
    "axios-mock-adapter": "^1.18.2",
    "browserify": "16.5.0",
    "chai": "4.2.0",
    "chai-as-promised": "7.1.1",
    "husky": "3.0.9",
    "istanbul": "0.4.5",
    "mocha": "5.2.0",
    "node-fetch": "2.2.0",
    "nyc": "12.0.2",
    "prettier": "2.0.5",
    "pretty-quick": "2.0.1",
    "qrcode-terminal": "0.12.0",
    "semver": "6.3.0",
    "sinon": "6.3.5",
    "sonarqube-scanner": "2.5.0",
    "ts-json-schema-generator": "0.56.0",
    "ts-node": "8.5.0",
    "tslint": "5.20.1",
    "tslint-config-prettier": "1.18.0",
    "tslint-config-valorsoft": "2.2.1"
  },
  "files": [
    "/dist"
  ],
  "nyc": {
    "include": [
      "src/**/*.ts"
    ],
    "exclude": [
      "test/**/*.spec.ts"
    ],
    "extension": [
      ".ts"
    ],
    "require": [
      "ts-node/register"
    ],
    "reporter": [
      "text",
      "text-summary"
    ],
    "sourceMap": true,
    "instrument": true
  }
}
