{ "name": "slack2hangoutschat-webhook", "version": "0.2.0", "description": "Slack 2 Google HangoutChat webhook converter", "repository": { "type": "git", "url": "https://github.com/tchiotludo/slack2hangoutschat-webhook.git" }, "keywords": [ "hangouts-chat", "google-chat", "slack", "webhook" ], "author": "tchiotludo", "license": "MIT", "scripts": { "start": "node dist/server.js", "build": "npm run build:ts && npm run lint:ts", "build:ts": "tsc", "watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,green.bold\" \"npm run watch:ts\" \"npm run watch:node\"", "watch:test": "npm run test -- --watchAll", "watch:node": "nodemon dist/server.js", "watch:ts": "tsc -w", "test": "jest --forceExit --coverage --verbose", "lint": "npm run lint:ts && ", "lint:ts": "tslint -c tslint.json -p tsconfig.json" }, "main": "dist/index.js", "types": "dist/index.d.ts", "engines": { "node": ">= 6.0.0" }, "dependencies": { "@slack/client": "^5.0.2", "body-parser": "^1.19.0", "compression": "^1.7.4", "errorhandler": "^1.5.1", "express": "^4.17.1", "express-winston": "^4.0.1", "hangouts-chat-webhook": "^0.1.1", "superagent": "^5.1.2", "winston": "^3.2.1" }, "devDependencies": { "@types/compression": "^1.0.1", "@types/errorhandler": "^0.0.32", "@types/express": "^4.17.2", "@types/express-winston": "^4.0.0", "@types/jest": "^24.0.23", "@types/node": "^12.12.16", "@types/superagent": "^4.1.4", "@types/supertest": "^2.0.8", "concurrently": "^5.0.1", "coveralls": "^3.0.9", "jest": "^24.9.0", "jest-extended": "^0.11.2", "jest-junit": "^10.0.0", "nodemon": "^2.0.1", "supertest": "^4.0.2", "ts-jest": "^24.2.0", "ts-node": "^8.5.4", "tslint": "^5.20.1", "typescript": "^3.7.3" }, "jest": { "globals": { "ts-jest": { "tsConfigFile": "tsconfig.json" } }, "moduleFileExtensions": [ "ts", "js" ], "transform": { "^.+\\.(ts|tsx)$": "./node_modules/ts-jest/preprocessor.js" }, "testMatch": [ "**/test/**/*.test.(ts|js)" ], "testEnvironment": "node" } }