Skip to content

Commit

Permalink
Merge pull request #30 from snyk/chore/update-dependencies
Browse files Browse the repository at this point in the history
chore: update dependencies
  • Loading branch information
danlucian committed Nov 29, 2022
2 parents 8df6ea6 + 94be128 commit eb1737c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lib/index.ts
Expand Up @@ -170,7 +170,7 @@ async function getAllDeps(lockfilePath: string): Promise<DepTree> {
let parser: LockfileParser;
try {
parser = await LockfileParser.readFile(lockfilePath);
} catch (error) {
} catch (error: any) {
throw new Error(`Error while parsing ${LOCKFILE_NAME}:\n${error.message}`);
}
const graph = parser.toDepGraph();
Expand Down
8 changes: 4 additions & 4 deletions package.json
Expand Up @@ -39,17 +39,17 @@
},
"devDependencies": {
"@types/graphlib": "^2.1.6",
"@types/jest": "^25.2.2",
"@types/jest": "28.1.1",
"@types/node": "^8.10.60",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"jest": "^25.5.4",
"jest": "28.1.3",
"prettier": "^2.0.5",
"ts-jest": "^25.5.1",
"ts-jest": "28.0.8",
"ts-node": "^8.10.1",
"tsc-watch": "^2.2.1",
"typescript": "^3.9.2"
"typescript": "4.9.3"
}
}

0 comments on commit eb1737c

Please sign in to comment.