zoomwebinarclient
Version:
A node client for handling Zoom webinars. Can be used to create webinars as well as get webinar attendance. Requires a zoom api and secret key.
19 lines (18 loc) • 425 B
JSON
{
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint", "promise"],
"extends": ["plugin:@typescript-eslint/recommended","plugin:promise/recommended"],
"parserOptions": {
"ecmaVersion": 6,
"ecmaFeatures": {
"experimentalObjectRestSpread": true
},
"env": {
"es6": true
},
"sourceType": "module"
},
"rules": {
"@typescript-eslint/rule-name": "error"
}
}