{
  "name": "@airgap/module-kit",
  "version": "0.13.46",
  "description": "The @airgap/module-kit package provides the common interfaces and functionalities to implement AirGap modules.",
  "keywords": [
    "airgap",
    "blockchain",
    "crypto"
  ],
  "license": "MIT",
  "homepage": "https://www.airgap.it",
  "repository": {
    "type": "git",
    "url": "https://github.com/airgap-it/airgap-coin-lib"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "rm -rf ./dist && 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 ../../lint-reports/module-kit.json --project . || true",
    "lint-ci:prettier": "prettier \"src/**/*.ts\" \"test/**/*.ts\" --list-different",
    "test": "",
    "test-ci": "",
    "browserify": "browserify ./dist/index.js -s airgapModuleKit > ./dist/airgap-module-kit.min.js"
  },
  "author": "Papers AG <contact@papers.ch> (https://papers.ch)",
  "dependencies": {
    "@airgap/coinlib-core": "^0.13.46",
    "@airgap/serializer": "^0.13.46"
  },
  "nyc": {
    "include": [
      "src/**/*.ts"
    ],
    "exclude": [
      "test/**/*.spec.ts"
    ],
    "extension": [
      ".ts"
    ],
    "require": [
      "ts-node/register"
    ],
    "reporter": [
      "text",
      "text-summary"
    ],
    "report-dir": "../../coverage/module-kit",
    "sourceMap": true,
    "instrument": true
  }
}
