-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
67 lines (67 loc) · 1.86 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "react-js-table-with-csv-dl",
"version": "0.9.7",
"description": "React JS tables and log viewer with stats if needed. Has the functionality to dowload table contents in CSV file with data stored in class prop.",
"main": "build/index.js",
"peerDependencies": {
"react": "^16.0.0"
},
"dependencies": {
"file-saver": "^1.3.8",
"react": "^16.0.0",
"react-html-parser": "^2.0.2",
"react-js-paginator": "^0.2.1",
"react-js-search": "^0.3.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack --watch",
"build": "webpack",
"lint": "eslint --report-unused-disable-directives src",
"fix": "eslint --fix --report-unused-disable-directives src"
},
"author": {
"name": "Jose Antonio Ciccio",
"email": "[email protected]"
},
"devDependencies": {
"style-loader": "^1.0.1",
"webpack": "^4.41.2",
"@babel/core": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"@babel/preset-react": "^7.8.3",
"babel-loader": "^8.1.0",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-react": "^7.19.0",
"react-dom": "^16.6.3",
"react-icons": "^2.2.7",
"webpack-cli": "^3.3.11"
},
"repository": {
"type": "git",
"url": "https://github.com/jciccio/react-table-with-csv-download.git"
},
"keywords": [
"table",
"log viewer",
"log",
"stats",
"csv download",
"html table",
"react table",
"react download csv",
"csv",
"customizable table",
"search table",
"search"
],
"license": "MIT",
"homepage": "https://github.com/jciccio/react-table-with-csv-download",
"bugs": {
"url": "https://github.com/jciccio/react-table-with-csv-download/issues"
}
}