Skip to content

Commit

Permalink
fix: bump deps
Browse files Browse the repository at this point in the history
  • Loading branch information
arlac77 committed May 2, 2020
1 parent 7f817fe commit 6b231ef
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
},
"sideEffects": false,
"type": "module",
"main": "src/service-authenticator.mjs",
"main": "./src/service-authenticator.mjs",
"exports": {
".": "src/service-authenticator.mjs",
".": "./src/service-authenticator.mjs",
"./": "./"
},
"description": "authentication providing service",
Expand All @@ -25,11 +25,11 @@
"scripts": {
"test": "ava --timeout 2m",
"cover": "c8 -x 'tests/**/*' --temp-directory build/tmp ava --timeout 2m && c8 report -r lcov -o build/coverage --temp-directory build/tmp",
"docs": "documentation readme src/service-authenticator.mjs --section=API",
"lint": "documentation lint src/service-authenticator.mjs"
"docs": "documentation readme ./src/service-authenticator.mjs --section=API",
"lint": "documentation lint ./src/service-authenticator.mjs"
},
"dependencies": {
"@kronos-integration/service": "^8.3.25",
"@kronos-integration/service": "^8.3.26",
"jsonwebtoken": "^8.5.1"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion tests/auth-test.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { readFileSync } from "fs";
import AuthSource from "./helpers/auth-source.mjs";

import { StandaloneServiceProvider } from "@kronos-integration/service";
import { ServiceAuthenticator } from "../src/service-authenticator.mjs";
import { ServiceAuthenticator } from "@kronos-integration/service-authenticator";

const here = dirname(fileURLToPath(import.meta.url));

Expand Down

0 comments on commit 6b231ef

Please sign in to comment.