Skip to content

Commit

Permalink
Fix dependencies (#25)
Browse files Browse the repository at this point in the history
- Remove the unused `http` and `https`.
- Set `md5` and `path` to use specific versions.
  • Loading branch information
noamtamim authored Sep 6, 2023
1 parent d5dd48d commit 2d795e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
2 changes: 0 additions & 2 deletions KalturaClientBase.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,6 @@
const md5 = require('md5');
const fs = require('fs');
const path = require('path');
const http = require('http');
const https = require('https');
const axios = require('axios');
const url = require('url');

Expand Down
6 changes: 2 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,8 @@
},
"dependencies": {
"axios": "^1.1.3",
"http": "*",
"https": "*",
"md5": "*",
"path": "*"
"md5": "^2.3.0",
"path": "^0.12.7"
},
"devDependencies": {
"chai": "^4.1.2",
Expand Down

0 comments on commit 2d795e1

Please sign in to comment.