UNPKG

twitchps

Version:

Library to easily interact with Twitch PubSub System

81 lines (80 loc) 1.65 kB
{ "name": "twitchps", "version": "1.6.0", "description": "Library to easily interact with Twitch PubSub System", "keywords": [ "twitch", "twitch.tv", "pubsub", "whisper", "bits", "cheers" ], "main": "main.js", "scripts": { "lint": "eslint \"**/*.js\"" }, "repository": { "type": "git", "url": "git+https://github.com/jctrvlr/twitchps.git" }, "author": "John Cummings", "license": "MIT", "bugs": { "url": "https://github.com/jctrvlr/twitchps/issues" }, "homepage": "https://github.com/jctrvlr/twitchps#readme", "eslintConfig": { "env": { "es6": true, "node": true }, "parserOptions": { "ecmaVersion": 6 }, "extends": "eslint:recommended", "rules": { "semi": [ 2, "always", { "omitLastInOneLineBlock": true } ], "no-unused-vars": [ 2, { "argsIgnorePattern": "^_", "caughtErrors": "none" } ], "no-control-regex": 0, "global-require": 1, "camelcase": 0, "no-console": 0, "dot-notation": 1, "no-else-return": 2, "no-plusplus": 2, "constructor-super": 2, "prefer-arrow-callback": 1, "object-shorthand": 2, "object-curly-spacing": 1, "object-property-newline": [ 1, { "allowMultiplePropertiesPerLine": true } ], "no-var": 2, "no-inner-declarations": 0 } }, "dependencies": { "events": "^3.0.0", "shortid": "^2.2.8", "ws": "^7.0.0" }, "devDependencies": { "eslint": "~6.8.0" } }