@mkody/twitch-emoticons 2.8.0 → 2.8.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/SECURITY.md +27 -0
- package/dist/TwitchEmoticons.min.js +22 -0
- package/dist/TwitchEmoticons.min.js.map +7 -0
- package/docs/BTTVEmote.html +1 -111
- package/docs/Channel.html +4 -4
- package/docs/Collection.html +1 -1
- package/docs/Emote.html +2 -107
- package/docs/EmoteFetcher.html +4 -4
- package/docs/EmoteParser.html +1 -1
- package/docs/FFZEmote.html +1 -111
- package/docs/SevenTVEmote.html +1 -111
- package/docs/TwitchEmote.html +1 -111
- package/docs/index.html +2 -2
- package/docs/struct_BTTVEmote.js.html +1 -1
- package/docs/struct_Channel.js.html +6 -1
- package/docs/struct_Emote.js.html +8 -1
- package/docs/struct_EmoteFetcher.js.html +5 -5
- package/docs/struct_EmoteParser.js.html +1 -1
- package/docs/struct_FFZEmote.js.html +1 -1
- package/docs/struct_SevenTVEmote.js.html +1 -1
- package/docs/struct_TwitchEmote.js.html +1 -1
- package/docs/util_Collection.js.html +1 -1
- package/jest.config.js +198 -0
- package/package.json +15 -10
- package/src/struct/Channel.js +5 -0
- package/src/struct/Emote.js +7 -0
- package/src/struct/EmoteFetcher.js +4 -4
- package/test/BTTV.test.js +48 -0
- package/test/FFZ.test.js +71 -0
- package/test/SevenTV.test.js +70 -0
- package/test/ToFromObject.test.js +155 -0
- package/test/Twitch.test.js +64 -0
- package/test/__snapshots__/ToFromObject.test.js.snap +121 -0
- package/test/other.test.js +13 -0
- package/typings/index.d.ts +17 -8
- package/.github/codeql/codeql-config.yml +0 -5
- package/.github/workflows/codeql.yml +0 -50
- package/.github/workflows/eslint.yml +0 -51
- package/.github/workflows/release.yml +0 -22
- package/.github/workflows/yarn-test.yml +0 -17
- package/test/index.js +0 -482
package/SECURITY.md
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# Security Policy
|
|
2
|
+
|
|
3
|
+
## Supported Versions
|
|
4
|
+
|
|
5
|
+
| Version | Supported |
|
|
6
|
+
| ------- | ------------------ |
|
|
7
|
+
| >= 2.4 | :white_check_mark: |
|
|
8
|
+
| < 2.4 | :x: |
|
|
9
|
+
|
|
10
|
+
## Reporting a Vulnerability
|
|
11
|
+
|
|
12
|
+
**Please do not report security vulnerabilities through public GitHub issues.**
|
|
13
|
+
|
|
14
|
+
Try to get in touch with the main maintainer by email at `im`[at]`kdy.ch` ([PGP](https://kdy.ch/pubkey.txt)) if possible with `[SECURITY]` prefixed in the subject line.
|
|
15
|
+
|
|
16
|
+
You should expect a reply within 24 hours. If for some reason it does not happen, please follow up again via email or [try to notify me on an another platform](https://kdy.ch) that I should have recieved an email from you.
|
|
17
|
+
|
|
18
|
+
Please prefer to use English and include as much information as possible, including:
|
|
19
|
+
|
|
20
|
+
- Version(s) tested
|
|
21
|
+
- Full path to the file(s) being the cause of the report
|
|
22
|
+
- The tested environnement (i.e. the OS and its version, NodeJS version)
|
|
23
|
+
- Special configuration used, if any
|
|
24
|
+
- A proof-of-concept or the code used for exploitation, if possible
|
|
25
|
+
- Explanation of the impact and how an attacker can run an exploit
|
|
26
|
+
|
|
27
|
+
Please note that we do not provide any bug-bounty at the moment.
|