{
  "name": "alunajs",
  "version": "1.3.0",
  "description": "Standardizing Crypto Trading APIs across multiple exchanges",
  "files": [
    "dist"
  ],
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "author": "Anderson Arboleya<anderson@aluna.social>",
  "contributors": [
    "Sergio Torres<sergio@aluna.social>"
  ],
  "license": "MIT",
  "engines": {
    "node": "^16.14"
  },
  "repository": "alunacrypto/alunajs",
  "scripts": {
    "clean": "rimraf dist",
    "clean-index": "rm -rf src/index.ts",
    "build": "yarn clean && yarn build-index && tsc -p tsconfig.dist.json && yarn clean-index",
    "build-index": "yarn cti entrypoint src -s false -e 'exchanges' -i '.spec' -i '.mock' -o index.ts -w -b",
    "build-watch": "yarn clean && tsc -p tsconfig.dist.json -w",
    "lint": "eslint src --cache --cache-location .eslintcache/ --ext .ts --max-warnings=0",
    "lintfix": "eslint src --cache --cache-location .eslintcache/ --ext .ts --max-warnings=0 --fix",
    "test": "mocha  --reporter dot",
    "test-watch": "mocha --watch  --reporter dot",
    "test-cover": "nyc mocha --reporter dot",
    "test-cover-watch": "nyc mocha --watch --reporter dot",
    "test-ci": "nyc mocha --bail --forbid-only --reporter dot",
    "test-e2e": "mocha -j 1 --config test/e2e/.mocharc.js test/e2e/index.ts",
    "test-e2e-watch": "mocha -j 1 --config test/e2e/.mocharc.js test/**/*.ts --watch",
    "playground": "nodemon -w src -e ts -x 'DEBUG=alunajs:* ts-node .playground/index.ts'",
    "add-exchange": "ts-node .scaffolding/addExchange.ts",
    "release": "np --test-script=test-cover",
    "prepublish": "yarn build",
    "prepare": "husky install"
  },
  "dependencies": {
    "axios": "^0.21.1",
    "bignumber.js": "^9.0.2",
    "debug": "^4.3.4",
    "fast-json-stable-stringify": "^2.1.0",
    "joi": "^17.6.0",
    "js-sha512": "^0.8.0",
    "lodash": "^4.17.21",
    "node-cache": "^5.1.2"
  },
  "devDependencies": {
    "@types/chai": "^4.2.18",
    "@types/chalk": "^2.2.0",
    "@types/compression": "^1.7.2",
    "@types/debug": "^4.1.7",
    "@types/express": "^4.17.13",
    "@types/inquirer": "^8.2.1",
    "@types/lodash": "^4.14.178",
    "@types/mocha": "^9.1.1",
    "@types/node": "^15.3.1",
    "@types/shelljs": "^0.8.11",
    "@types/sinon": "^10.0.0",
    "@types/yargs": "^17.0.10",
    "@typescript-eslint/eslint-plugin": "5.4.0",
    "@typescript-eslint/parser": "5.4.0",
    "chai": "^4.3.4",
    "chalk": "4.1.2",
    "compression": "^1.7.4",
    "create-ts-index": "^1.14.0",
    "dotenv": "^16.0.0",
    "eslint": "^7.26.0",
    "eslint-config-airbnb-base": "^14.2.1",
    "eslint-import-resolver-typescript": "^2.4.0",
    "eslint-plugin-chai-friendly": "^0.7.1",
    "eslint-plugin-import": "^2.22.1",
    "eslint-plugin-import-helpers": "^1.1.0",
    "eslint-plugin-unused-imports": "^1.1.1",
    "express": "^4.18.0",
    "husky": "^7.0.4",
    "inquirer": "^8.2.3",
    "mocha": "^9.1.3",
    "nodemon": "^2.0.16",
    "nyc": "^15.1.0",
    "rimraf": "^3.0.2",
    "shelljs": "^0.8.5",
    "sinon": "^10.0.0",
    "sleep-promise": "^9.1.0",
    "ts-mock-imports": "^1.3.7",
    "ts-node": "^10.0.0",
    "typescript": "^4.4.4",
    "yargs": "^17.4.1"
  }
}
