warframe-worldstate-data 1.22.1 → 1.22.2

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.
@@ -13943,6 +13943,15 @@
13943
13943
  "/lotus/types/gameplay/infestedmicroplanet/jobs/deimospurifybounty": {
13944
13944
  "value": "Anomaly Retrieval"
13945
13945
  },
13946
+ "/lotus/types/gameplay/infestedmicroplanet/resources/necraloids/necraloidstandingcommonitem": {
13947
+ "value": "Orokin Orientation Matrix"
13948
+ },
13949
+ "/lotus/types/gameplay/infestedmicroplanet/resources/necraloids/necraloidstandinguncommonitem": {
13950
+ "value": "Orokin Ballistics Matrix"
13951
+ },
13952
+ "/lotus/types/gameplay/infestedmicroplanet/resources/necraloids/necraloidstandingrareitem": {
13953
+ "value": "Orokin Animus Matrix"
13954
+ },
13946
13955
  "/lotus/types/gameplay/venus/jobs/narmer/narmervenusculljobassassinate": {
13947
13956
  "value": "Master's Voice (Narmer)"
13948
13957
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "warframe-worldstate-data",
3
- "version": "1.22.1",
3
+ "version": "1.22.2",
4
4
  "description": "Warframe data for use with warframe-worldstate-parser",
5
5
  "main": "exports.js",
6
6
  "directories": {
@@ -16,6 +16,7 @@
16
16
  "eslint-plugin-import": "^2.18.2",
17
17
  "mocha": "^7.2.0",
18
18
  "nyc": "^15.1.0",
19
+ "precommit-hook": "^3.0.0",
19
20
  "sinon": "^8.1.1",
20
21
  "sinon-chai": "^3.4.0"
21
22
  },
@@ -24,7 +25,8 @@
24
25
  "lint:fix": "eslint --ignore-path .gitignore . --fix",
25
26
  "test": " nyc mocha",
26
27
  "coverage": "npm test && nyc report --reporter=text-lcov | coveralls",
27
- "sort": "python tools/sort_languages.py"
28
+ "sort": "python tools/sort_languages.py",
29
+ "validate": "npm run lint:fix && npm run test && git add -u ."
28
30
  },
29
31
  "repository": {
30
32
  "type": "git",
@@ -115,5 +117,10 @@
115
117
  ],
116
118
  "skip-full": true
117
119
  },
118
- "mocha": {}
120
+ "mocha": {},
121
+ "pre-commit": [
122
+ "lint",
123
+ "validate",
124
+ "test"
125
+ ]
119
126
  }