worldstate-emitter 2.2.1 → 2.2.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "worldstate-emitter",
3
- "version": "2.2.1",
3
+ "version": "2.2.3",
4
4
  "description": "Event emitter for worldstate & other warframe events",
5
5
  "keywords": [
6
6
  "warframe",
@@ -33,7 +33,7 @@
33
33
  "lint": "eslint .",
34
34
  "lint:fix": "eslint . --fix",
35
35
  "prepare": "husky && npx install-peerdeps @wfcd/eslint-config@latest -S",
36
- "report": "c8 report --reporter=text-lcov",
36
+ "report": "c8 report --reporter=text-lcov > coverage/lcov.info",
37
37
  "test": "c8 mocha",
38
38
  "validate": "npm ls"
39
39
  },
@@ -56,13 +56,13 @@
56
56
  "coveralls": "^3.1.0",
57
57
  "husky": "^9.0.11",
58
58
  "install-peerdeps": "^3.0.3",
59
- "lint-staged": "^15.2.2",
59
+ "lint-staged": "^16.0.0",
60
60
  "mocha": "^11.0.1",
61
61
  "nodemon": "^3.0.3",
62
62
  "prettier": "^3.2.5"
63
63
  },
64
64
  "peerDependencies": {
65
- "warframe-worldstate-data": "^2.x",
65
+ "warframe-worldstate-data": "^3.x",
66
66
  "warframe-worldstate-parser": "^4.x"
67
67
  },
68
68
  "optionalDependencies": {
@@ -9,21 +9,6 @@
9
9
  "key": "forum.updates.pc",
10
10
  "defaultAttach": "https://i.imgur.com/eY1NkzO.png"
11
11
  },
12
- {
13
- "url": "https://forums.warframe.com/forum/152-ps4-update-notes.xml",
14
- "key": "forum.updates.ps4",
15
- "defaultAttach": "https://i.imgur.com/eY1NkzO.png"
16
- },
17
- {
18
- "url": "https://forums.warframe.com/forum/253-xbox-one-update-notes.xml",
19
- "key": "forum.updates.xb1",
20
- "defaultAttach": "https://i.imgur.com/eY1NkzO.png"
21
- },
22
- {
23
- "url": "https://forums.warframe.com/forum/1196-nintendo-switch-update-notes.xml",
24
- "key": "forum.updates.switch",
25
- "defaultAttach": "https://i.imgur.com/eY1NkzO.png"
26
- },
27
12
  {
28
13
  "url": "https://forums.warframe.com/forum/170-announcements-events.xml",
29
14
  "key": "forum.news",
package/.jshintignore DELETED
@@ -1 +0,0 @@
1
- node_modules
package/.jshintrc DELETED
@@ -1,10 +0,0 @@
1
- {
2
- "node": true,
3
-
4
- "curly": true,
5
- "latedef": true,
6
- "quotmark": true,
7
- "undef": true,
8
- "unused": true,
9
- "trailing": true
10
- }