Skip to content

Commit 76086b7

Browse files
snyk-botashvin27
authored andcommitted
fix: package.json, package-lock.json & .snyk to reduce vulnerabilities
The following vulnerabilities are fixed with a Snyk patch: - https://snyk.io/vuln/SNYK-JS-LODASH-567746
1 parent 9d05b8c commit 76086b7

File tree

1 file changed

+69
-65
lines changed

1 file changed

+69
-65
lines changed

package.json

Lines changed: 69 additions & 65 deletions
Original file line numberDiff line numberDiff line change
@@ -1,67 +1,71 @@
11
{
2-
"name": "@ashvin27/react-datatable",
3-
"version": "1.4.0",
4-
"description": "ReactDatatable is a component which provide ability to create multifunctional table using single component like jQuery Datatable",
5-
"main": "./lib/index.js",
6-
"author": {
7-
"name": "Ashvin Patel",
8-
"email": "[email protected]",
9-
"url": "https://github.com/ashvin27"
10-
},
11-
"license": "MIT",
12-
"homepage": "http://react-datatable.in/",
13-
"bugs": {
14-
"url": "https://github.com/ashvin27/react-datatable/issues",
15-
"email": "[email protected]"
16-
},
17-
"repository": {
18-
"type": "git",
19-
"url": "git+https://github.com/ashvin27/react-datatable.git"
20-
},
21-
"scripts": {
22-
"test": "echo \"Error: no test specified\" && exit 1",
23-
"start": "webpack --watch",
24-
"build": "webpack",
25-
"transpile": "babel src -d lib --copy-files",
26-
"prepublishOnly": "npm run transpile"
27-
},
28-
"dependencies": {
29-
"lodash": "^4.17.15"
30-
},
31-
"peerDependencies": {
32-
"react": "^16.0.0",
33-
"react-dom": "^16.0.0"
34-
},
35-
"devDependencies": {
36-
"babel-cli": "^6.26.0",
37-
"babel-core": "^6.26.3",
38-
"babel-loader": "^7.1.4",
39-
"babel-plugin-transform-object-rest-spread": "^6.26.0",
40-
"babel-plugin-transform-react-jsx": "^6.24.1",
41-
"babel-preset-env": "^1.7.0",
42-
"babel-preset-minify": "^0.5.0",
43-
"babel-runtime": "^6.26.0",
44-
"css-loader": "^2.0.0",
45-
"file-loader": "^2.0.0",
46-
"react": "^16.4.0",
47-
"react-dom": "^16.4.0",
48-
"react-scripts": "1.1.4",
49-
"style-loader": "^0.23.1",
50-
"url-loader": "^1.1.2",
51-
"webpack": "^3.10.0"
52-
},
53-
"keywords": [
54-
"react-datatable",
55-
"react-data-table",
56-
"datatable",
57-
"datagrid",
58-
"jquery datatable",
59-
"react-component",
60-
"react datatable",
61-
"react data table",
62-
"react datagrid",
63-
"javascript datatable",
64-
"react",
65-
"reactjs"
66-
]
2+
"name": "@ashvin27/react-datatable",
3+
"version": "1.4.0",
4+
"description": "ReactDatatable is a component which provide ability to create multifunctional table using single component like jQuery Datatable",
5+
"main": "./lib/index.js",
6+
"author": {
7+
"name": "Ashvin Patel",
8+
"email": "[email protected]",
9+
"url": "https://github.com/ashvin27"
10+
},
11+
"license": "MIT",
12+
"homepage": "http://react-datatable.in/",
13+
"bugs": {
14+
"url": "https://github.com/ashvin27/react-datatable/issues",
15+
"email": "[email protected]"
16+
},
17+
"repository": {
18+
"type": "git",
19+
"url": "git+https://github.com/ashvin27/react-datatable.git"
20+
},
21+
"scripts": {
22+
"test": "echo \"Error: no test specified\" && exit 1",
23+
"start": "webpack --watch",
24+
"build": "webpack",
25+
"transpile": "babel src -d lib --copy-files",
26+
"prepublishOnly": "npm run transpile",
27+
"snyk-protect": "snyk protect",
28+
"prepare": "npm run snyk-protect"
29+
},
30+
"dependencies": {
31+
"lodash": "^4.17.15",
32+
"snyk": "^1.316.1"
33+
},
34+
"peerDependencies": {
35+
"react": "^16.0.0",
36+
"react-dom": "^16.0.0"
37+
},
38+
"devDependencies": {
39+
"babel-cli": "^6.26.0",
40+
"babel-core": "^6.26.3",
41+
"babel-loader": "^7.1.4",
42+
"babel-plugin-transform-object-rest-spread": "^6.26.0",
43+
"babel-plugin-transform-react-jsx": "^6.24.1",
44+
"babel-preset-env": "^1.7.0",
45+
"babel-preset-minify": "^0.5.0",
46+
"babel-runtime": "^6.26.0",
47+
"css-loader": "^2.0.0",
48+
"file-loader": "^2.0.0",
49+
"react": "^16.4.0",
50+
"react-dom": "^16.4.0",
51+
"react-scripts": "1.1.4",
52+
"style-loader": "^0.23.1",
53+
"url-loader": "^1.1.2",
54+
"webpack": "^3.10.0"
55+
},
56+
"keywords": [
57+
"react-datatable",
58+
"react-data-table",
59+
"datatable",
60+
"datagrid",
61+
"jquery datatable",
62+
"react-component",
63+
"react datatable",
64+
"react data table",
65+
"react datagrid",
66+
"javascript datatable",
67+
"react",
68+
"reactjs"
69+
],
70+
"snyk": true
6771
}

0 commit comments

Comments
 (0)