{
  "name": "arbitrage-algorithms-framework",
  "version": "0.0.3",
  "description": "working prototype typescript framework for making arbitrage bots on cryptocurrencies exchanges, on top of ccxt",
  "main": "dist/src/index.js",
  "types": "./dist/src/index.d.ts",
  "scripts": {
    "build": "rimraf ./dist && tsc",
    "start": "tsc && node dist/example.js",
    "start:dev": "nodemon",
    "run": "ts-node ./src/example.ts",
    "lint": "tslint -c tslint.json 'src/**/*.ts'",
    "lint:fix": "npm run lint -- --fix",
    "test": "npx jest"
  },
  "keywords": ["multiple exchanges", "bot", "algorithm", "arbitrage", "framework", "ccxt", "typescript", "ts", "cryptocurrency"],
  "homepage": "https://github.com/g-zwolinski/arbitrage-algorithms-framework#readme",
  "bugs": "https://github.com/g-zwolinski/arbitrage-algorithms-framework/issues",
  "repository": {
    "type": "git",
    "url": "https://github.com/g-zwolinski/arbitrage-algorithms-framework"
  },
  "author": "zvvolinski.g@gmail.com",
  "license": "ISC",
  "devDependencies": {
    "@babel/preset-typescript": "^7.12.7",
    "@types/jest": "^26.0.20",
    "@types/node": "^14.14.22",
    "@types/node-telegram-bot-api": "^0.51.1",
    "jest": "^26.6.3",
    "nodemon": "^2.0.7",
    "rimraf": "^3.0.2",
    "ts-jest": "^26.5.0",
    "ts-node": "^9.1.1",
    "tslint": "^6.1.3",
    "typescript": "^4.1.3"
  },
  "dependencies": {
    "bignumber.js": "^9.0.1",
    "ccxt": "^1.41.20",
    "node-telegram-bot-api": "^0.52.0"
  }
}
