{
  "name": "coinjarexchange",
  "version": "4.1.3",
  "description": "Typescript wrapper for CoinJar Exchange",
  "main": "dist/index.js",
  "typings": "dist/index.d.ts",
  "scripts": {
    "build": "tsc -d",
    "test": "./node_modules/mocha/bin/mocha \"src/**/*.ts\" --require ts-node/register --require source-map-support/register --full-trace --bail",
    "coverage": "./node_modules/nyc/bin/nyc.js npm test",
    "coverage-ci": "./node_modules/nyc/bin/nyc.js npm test --reporter=text-lcov ",
    "lint": "tslint --project tsconfig.json"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/sketchthat/coinjarexchange.git"
  },
  "keywords": [
    "coinjar",
    "exchange",
    "api",
    "bitcoin",
    "ethereum",
    "ripple",
    "litecoin",
    "zcash"
  ],
  "author": "Michael Kimpton",
  "license": "WTFPL",
  "bugs": {
    "url": "https://github.com/sketchthat/coinjarexchange/issues"
  },
  "homepage": "https://github.com/sketchthat/coinjarexchange#readme",
  "dependencies": {
    "request": "^2.88.0",
    "request-promise": "^4.2.4"
  },
  "devDependencies": {
    "@types/chai": "^4.1.7",
    "@types/mocha": "^5.2.6",
    "@types/node": "^10.14.4",
    "chai": "^4.2.0",
    "mocha": "^5.2.0",
    "mocha-lcov-reporter": "^1.3.0",
    "nyc": "^14.0.0",
    "sinon": "^7.3.2",
    "source-map-support": "^0.5.12",
    "ts-node": "^7.0.1",
    "tslint": "^5.16.0",
    "tslint-eslint-rules": "^5.4.0",
    "typescript": "^3.4.3"
  },
  "nyc": {
    "include": [
      "src/**/*.ts"
    ],
    "exclude": [
      "src/interfaces/*.ts"
    ],
    "extension": [
      ".ts"
    ],
    "reporter": [
      "text-lcov",
      "lcov",
      "html"
    ],
    "sourceMap": true,
    "instrument": true,
    "check-coverage": true
  }
}
