Skip to content

Commit

Permalink
chore: deps
Browse files Browse the repository at this point in the history
  • Loading branch information
ilteoood committed Dec 2, 2024
1 parent 8df6ae8 commit c1dd88d
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 23 deletions.
11 changes: 0 additions & 11 deletions .eslintrc

This file was deleted.

23 changes: 23 additions & 0 deletions eslint.config.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
const globals = require("globals");
const js = require("@eslint/js");

const {
FlatCompat,
} = require("@eslint/eslintrc");

const compat = new FlatCompat({
baseDirectory: __dirname,
recommendedConfig: js.configs.recommended,
allConfig: js.configs.all
});

module.exports = [...compat.extends("eslint:recommended"), {
languageOptions: {
globals: {
...globals.node,
},
ecmaVersion: 2020,
sourceType: "commonjs",
},
rules: {},
}];
24 changes: 12 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,20 +32,20 @@
},
"homepage": "https://github.com/nearform/get-jwks#readme",
"dependencies": {
"jwk-to-pem": "^2.0.4",
"lru-cache": "^11.0.0"
"jwk-to-pem": "^2.0.7",
"lru-cache": "^11.0.2"
},
"devDependencies": {
"@fastify/jwt": "^8.0.0",
"@types/node": "^22.0.0",
"eslint": "^8.6.0",
"fast-jwt": "^4.0.0",
"fastify": "^4.0.3",
"jsonwebtoken": "^9.0.0",
"nock": "^v14.0.0-beta.16",
"prettier": "^3.0.0",
"@fastify/jwt": "^9.0.1",
"@types/node": "^22.10.1",
"eslint": "^9.16.0",
"fast-jwt": "^5.0.0",
"fastify": "^5.1.0",
"jsonwebtoken": "^9.0.2",
"nock": "^v14.0.0-beta.18",
"prettier": "^3.4.1",
"sinon": "^19.0.2",
"tsd": "^0.31.0",
"typescript": "^5.0.2"
"tsd": "^0.31.2",
"typescript": "^5.7.2"
}
}

0 comments on commit c1dd88d

Please sign in to comment.