Skip to content

Commit

Permalink
(npm) Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
edwardspec committed Feb 3, 2025
1 parent 9a37b3f commit 95de54d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 11 deletions.
5 changes: 4 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ module.exports = {
extends: [
'wikimedia',
'wikimedia/node',
'wikimedia/language/es2021'
'wikimedia/language/es2022'
],
rules: {
// Might enable this later.
Expand All @@ -23,6 +23,9 @@ module.exports = {
'no-process-exit': 'off',
'jsdoc/no-undefined-types': 'off', // Don't want to add unnecessary require() just to use a class in JSDoc annotation

// Unavoidable when loading assets.
'security/detect-non-literal-fs-filename': 'off',

// Not exactly against applying these in the future,
// but they are very annoying with the current codestyle ("for ( var [ a, b ] of ..." loops, etc.).
'prefer-const': 'off',
Expand Down
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
{
"private": true,
"name": "fudocgenerator",
"description": "Tools to generate documentation for SB mod \"Frackin' Universe\".",
"description": "Tools to generate documentation for Starbound mod \"Frackin' Universe\".",
"version": "0.0.1",
"license": "GPL-3.0-or-later",
"author": "Edward Chernenko <edwardspec@gmail.com>",
"dependencies": {
"@nodelib/fs.walk": "^1.2.8",
"@nodelib/fs.walk": "^3.0.1",
"@subspace/jump-consistent-hash": "^1.1.1",
"change-case": "^4.1.2",
"cli-progress": "^3.10.0",
"deepmerge": "^4.2.2",
"diff": "^5.0.0",
"cli-progress": "^3.12.0",
"deepmerge": "^4.3.1",
"diff": "^7.0.0",
"fs": "^0.0.2",
"lodash": "^4.17.21",
"minimist": "^1.2.6",
"mwbot": "^2.0.0",
"picomatch": "^2.3.1",
"minimist": "^1.2.8",
"mwbot": "^2.1.3",
"picomatch": "^4.0.2",
"strip-json-comments": "^3.1.1"
},
"devDependencies": {
"eslint": "^8.11.0",
"eslint-config-wikimedia": "^0.22.1"
"eslint": "8.20.0",
"eslint-config-wikimedia": "^0.25.1"
},
"scripts": {
"test": "eslint ."
Expand Down

0 comments on commit 95de54d

Please sign in to comment.