{
  "name": "mock-stomp-broker",
  "version": "1.2.0",
  "description": "A mock STOMP broker for Node, to be used for testing",
  "author": "Rufus Raghunath",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/rufusraghunath/js-stomp-utils"
  },
  "keywords": [
    "stomp",
    "mock",
    "test",
    "javascript",
    "node",
    "websocket"
  ],
  "main": "dist/bundle.js",
  "types": "dist/index.d.ts",
  "dependencies": {
    "stomp-broker-js": "^1.3.0",
    "uuid": "^3.3.3"
  },
  "devDependencies": {
    "@stomp/stompjs": "^5.4.2",
    "@types/jest": "^24.0.19",
    "@types/text-encoding": "0.0.35",
    "@types/uuid": "^3.4.5",
    "@typescript-eslint/eslint-plugin": "^2.4.0",
    "@typescript-eslint/parser": "^2.4.0",
    "eslint": "^6.5.1",
    "eslint-config-prettier": "^6.4.0",
    "eslint-plugin-import": "^2.18.2",
    "eslint-plugin-prettier": "^3.1.1",
    "husky": "^3.0.9",
    "jest": "^24.9.0",
    "jest-cli": "^24.9.0",
    "lint-staged": "^9.4.2",
    "prettier": "^1.18.2",
    "text-encoding": "^0.7.0",
    "ts-jest": "^24.1.0",
    "ts-loader": "^6.2.0",
    "typescript": "^3.6.3",
    "webpack": "^4.41.0",
    "webpack-cli": "^3.3.9"
  },
  "scripts": {
    "prepublish": "npm run build",
    "build": "npm run lint && npm run prettier && jest --config jestconfig.json && webpack --mode=production && npm run copy-types",
    "test": "jest --config jestconfig.json --watch",
    "prettier:base": "prettier --parser typescript",
    "prettier": "npm run prettier:base -- --list-different \"src/**/*.ts\"",
    "prettier:fix": "npm run prettier:base -- --loglevel warn --write \"src/**/*.ts\"",
    "lint": "npx eslint 'src/**/*.ts' -c ./eslintconfig.json",
    "lint:fix": "npm run lint -- --fix",
    "copy-types": "cp src/broker/index.d.ts dist"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged",
      "pre-push": "npm run build"
    }
  },
  "lint-staged": {
    "*.ts": [
      "npm run prettier:fix",
      "npm run lint:fix",
      "git add"
    ]
  },
  "gitHead": "ae1d71b85de31b73e0c9f004e32e002f0db3dd25"
}
