{
  "name": "slack-interaction-relay",
  "version": "0.0.10",
  "description": "Slack Interaction Relay",
  "main": "build/main/index.js",
  "typings": "build/main/index.d.ts",
  "module": "build/module/index.js",
  "repository": "https://github.com/rstuven/slack-interaction-relay",
  "license": "MIT",
  "keywords": [],
  "scripts": {
    "describe": "npm-scripts-info",
    "build": "run-s clean build:schema && run-p build:*",
    "build:schema": "json2ts -i src/configuration.schema.json -o src/types/configuration.ts",
    "build:main": "tsc -p tsconfig.json",
    "build:module": "tsc -p tsconfig.module.json",
    "postbuild": "cp src/configuration.schema.json build/",
    "fix": "run-s fix:*",
    "fix:prettier": "prettier \"src/**/*.ts\" --write",
    "fix:tslint": "eslint -c .eslintrc.js --ext .ts --fix ./src",
    "test": "run-s build test:*",
    "test:lint": "eslint -c .eslintrc.js --ext .ts ./src",
    "_test:prettier": "prettier \"src/**/*.ts\" --list-different",
    "test:unit": "jest ./src/lib",
    "watch": "run-s clean build:main && run-p \"build:main -- -w\" \"test:unit -- --watch\"",
    "version": "standard-version",
    "reset": "git clean -dfx . && npm i",
    "clean": "trash build test",
    "clean:test": "jest --clear-cache",
    "clean:all": "run-p clean clean:test",
    "prepare-release": "run-s reset test version"
  },
  "engines": {
    "node": ">=8.9"
  },
  "dependencies": {
    "@octokit/rest": "^17.9.3",
    "@slack/events-api": "^2.3.3",
    "@slack/web-api": "^5.9.0",
    "sha.js": "^2.4.11"
  },
  "devDependencies": {
    "@bitjson/npm-scripts-info": "^1.0.0",
    "@bitjson/typedoc": "^0.15.0-0",
    "@istanbuljs/nyc-config-typescript": "^0.1.3",
    "@types/jest": "^25.2.3",
    "@types/node": "^12.12.43",
    "@typescript-eslint/eslint-plugin": "^3.1.0",
    "@typescript-eslint/parser": "^3.1.0",
    "cz-conventional-changelog": "^2.1.0",
    "eslint": "^7.1.0",
    "eslint-config-prettier": "^6.11.0",
    "eslint-plugin-import": "^2.20.2",
    "eslint-plugin-jsdoc": "^27.0.2",
    "eslint-plugin-prefer-arrow": "^1.2.1",
    "gh-pages": "^2.0.1",
    "jest": "^26.0.1",
    "json-schema-to-typescript": "^9.1.0",
    "npm-run-all": "^4.1.5",
    "open-cli": "^5.0.0",
    "prettier": "^1.18.2",
    "standard-version": "^6.0.1",
    "trash-cli": "^3.0.0",
    "ts-jest": "^26.1.0",
    "typescript": "^3.5.3"
  },
  "config": {
    "commitizen": {
      "path": "cz-conventional-changelog"
    }
  },
  "prettier": {
    "singleQuote": true
  }
}
