@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.
Files changed (41) hide show
  1. package/SECURITY.md +27 -0
  2. package/dist/TwitchEmoticons.min.js +22 -0
  3. package/dist/TwitchEmoticons.min.js.map +7 -0
  4. package/docs/BTTVEmote.html +1 -111
  5. package/docs/Channel.html +4 -4
  6. package/docs/Collection.html +1 -1
  7. package/docs/Emote.html +2 -107
  8. package/docs/EmoteFetcher.html +4 -4
  9. package/docs/EmoteParser.html +1 -1
  10. package/docs/FFZEmote.html +1 -111
  11. package/docs/SevenTVEmote.html +1 -111
  12. package/docs/TwitchEmote.html +1 -111
  13. package/docs/index.html +2 -2
  14. package/docs/struct_BTTVEmote.js.html +1 -1
  15. package/docs/struct_Channel.js.html +6 -1
  16. package/docs/struct_Emote.js.html +8 -1
  17. package/docs/struct_EmoteFetcher.js.html +5 -5
  18. package/docs/struct_EmoteParser.js.html +1 -1
  19. package/docs/struct_FFZEmote.js.html +1 -1
  20. package/docs/struct_SevenTVEmote.js.html +1 -1
  21. package/docs/struct_TwitchEmote.js.html +1 -1
  22. package/docs/util_Collection.js.html +1 -1
  23. package/jest.config.js +198 -0
  24. package/package.json +15 -10
  25. package/src/struct/Channel.js +5 -0
  26. package/src/struct/Emote.js +7 -0
  27. package/src/struct/EmoteFetcher.js +4 -4
  28. package/test/BTTV.test.js +48 -0
  29. package/test/FFZ.test.js +71 -0
  30. package/test/SevenTV.test.js +70 -0
  31. package/test/ToFromObject.test.js +155 -0
  32. package/test/Twitch.test.js +64 -0
  33. package/test/__snapshots__/ToFromObject.test.js.snap +121 -0
  34. package/test/other.test.js +13 -0
  35. package/typings/index.d.ts +17 -8
  36. package/.github/codeql/codeql-config.yml +0 -5
  37. package/.github/workflows/codeql.yml +0 -50
  38. package/.github/workflows/eslint.yml +0 -51
  39. package/.github/workflows/release.yml +0 -22
  40. package/.github/workflows/yarn-test.yml +0 -17
  41. 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.