{
  "author": "Evan Tahler <evantahler@gmail.com>",
  "name": "actionhero",
  "description": "The reusable, scalable, and quick node.js API server for stateless and stateful applications",
  "version": "26.0.5",
  "homepage": "http://www.actionherojs.com",
  "license": "Apache-2.0",
  "repository": {
    "type": "git",
    "url": "git://github.com/actionhero/actionhero.git"
  },
  "main": "dist/index",
  "types": "dist/index",
  "keywords": [
    "api",
    "realtime",
    "socket",
    "http",
    "https",
    "web",
    "game",
    "cluster",
    "soa",
    "action",
    "task",
    "delay",
    "service",
    "tcp",
    "background",
    "framework",
    "typescript"
  ],
  "engines": {
    "node": ">=12.0.0"
  },
  "dependencies": {
    "@types/ioredis": "^4.26.4",
    "browser_fingerprint": "^2.0.3",
    "commander": "^7.2.0",
    "dot-prop": "^6.0.1",
    "etag": "^1.8.1",
    "formidable": "^1.2.2",
    "glob": "^7.1.7",
    "i18n": "^0.13.3",
    "ioredis": "^4.27.3",
    "ioredis-mock": "^5.5.6",
    "is-running": "^2.1.0",
    "mime": "^2.5.2",
    "node-resque": "^9.0.0",
    "optimist": "^0.6.1",
    "primus": "^8.0.3",
    "qs": "^6.10.1",
    "uglify-js": "^3.13.7",
    "uuid": "^8.3.2",
    "winston": "^3.3.3",
    "ws": "^7.4.6"
  },
  "devDependencies": {
    "@types/glob": "^7.1.3",
    "@types/jest": "^26.0.23",
    "@types/node": "^15.6.1",
    "@types/primus": "^7.3.4",
    "@types/puppeteer": "^5.4.3",
    "@types/uuid": "^8.3.0",
    "jest": "^27.0.1",
    "prettier": "^2.3.0",
    "puppeteer": "^9.1.1",
    "request": "^2.88.2",
    "request-promise-native": "^1.0.9",
    "ts-jest": "^27.0.0",
    "ts-node-dev": "^1.1.6",
    "typedoc": "^0.20.36",
    "typescript": "^4.2.4"
  },
  "bin": {
    "actionhero": "dist/bin/actionhero.js"
  },
  "jest": {
    "testPathIgnorePatterns": [
      "<rootDir>/__tests__/testPlugin",
      "<rootDir>/tmp"
    ],
    "transform": {
      "^.+\\.ts?$": "ts-jest"
    }
  },
  "scripts": {
    "postinstall": "echo 'To generate a new actionhero project, run \"npx actionhero generate\"'",
    "test": "jest --maxWorkers 50%",
    "prepare": "npm run build && npm run docs",
    "pretest": "npm run lint && npm run build",
    "dev": "ts-node-dev --transpile-only --no-deps ./src/server",
    "debug": "tsc && ts-node-dev --transpile-only --no-deps --inspect -- ./src/server ",
    "start": "node ./dist/server.js",
    "build": "rm -rf dist && ./node_modules/.bin/tsc --sourceMap false --declaration",
    "docs": "typedoc --out docs --theme default src/index.ts",
    "lint": "prettier --check src __tests__",
    "pretty": "prettier --write src __tests__"
  }
}
