-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix potential security risk: Minimist <=1.2.5 is vulnerable to Protot…
…ype Pollution via file index.js, function setKey() (lines 69-95).
- Loading branch information
Showing
3 changed files
with
1,340 additions
and
904 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "react-filter-box", | ||
"version": "3.4.2", | ||
"version": "3.4.3", | ||
"description": "Conditional filter supports OR/AND, bracket, Highlighting, Autocomplete, and high extensibility ", | ||
"scripts": { | ||
"start": "node server.js", | ||
|
@@ -30,14 +30,14 @@ | |
"edit", | ||
"webpack" | ||
], | ||
"author": "nha bui duc <[email protected]> (http://github.com/nhabuiduc)", | ||
"author": "nha bui duc (http://github.com/nhabuiduc)", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/nhabuiduc/react-filter-box" | ||
}, | ||
"homepage": "", | ||
"devDependencies": { | ||
"@babel/cli": "^7.0.0", | ||
"@babel/cli": "^7.17.6", | ||
"@babel/core": "^7.1.2", | ||
"@babel/preset-env": "^7.1.0", | ||
"@babel/preset-react": "^7.0.0", | ||
|
@@ -52,7 +52,7 @@ | |
"@types/react-day-picker": "^5.3.0", | ||
"@types/react-dom": "^16.0.11", | ||
"@types/sinon": "^5.0.7", | ||
"babel-loader": "^8.0.4", | ||
"babel-loader": "^8.2.4", | ||
"babel-plugin-transform-remove-console": "^6.9.4", | ||
"chai": "^4.2.0", | ||
"css-loader": "^1.0.1", | ||
|
@@ -74,9 +74,9 @@ | |
"ts-loader": "^6.2.1", | ||
"tslint": "^5.17.0", | ||
"typescript": "^3.2.1", | ||
"webpack": "^4.27.0", | ||
"webpack": "4", | ||
"webpack-cli": "^3.1.2", | ||
"webpack-dev-server": "^3.8.1", | ||
"webpack-dev-server": "3", | ||
"webpack-node-externals": "^1.7.2" | ||
}, | ||
"dependencies": { | ||
|
@@ -89,6 +89,7 @@ | |
}, | ||
"resolutions": { | ||
"set-value": "2.0.1", | ||
"mixin-deep": "1.3.2" | ||
"mixin-deep": "1.3.2", | ||
"minimist":"1.2.6" | ||
} | ||
} |
Oops, something went wrong.