-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
80 lines (80 loc) · 1.61 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "twitchps",
"version": "1.5.5",
"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"
}
}