forked from dolezel/react-csv-downloader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.56 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
{
"name": "react-csv-downloader",
"version": "1.4.0",
"description": "React csv downloader",
"main": "dist/index.js",
"scripts": {
"test": "mocha --opts ./mocha.opts \"src/**/*.spec.js\"",
"lint": "eslint .",
"start": "npm start --prefix example",
"prebuild": "rimraf dist",
"build": "babel src -d dist --ignore '**/*.spec.js'",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/dolezel/react-csv-downloader.git"
},
"keywords": [
"React",
"CSV",
"Export",
"Download"
],
"author": "Castellant Guillaume <gcastellant@gmail.com>",
"contributors": [
"Jan Dolezel <dolezel.jan@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/dolezel/react-csv-downloader/issues"
},
"homepage": "https://github.com/dolezel/react-csv-downloader",
"dependencies": {
"file-saver": "^2.0.2"
},
"devDependencies": {
"@babel/cli": "7.7.5",
"@babel/core": "7.7.5",
"@babel/plugin-proposal-class-properties": "7.7.4",
"@babel/preset-env": "7.7.6",
"@babel/preset-react": "7.7.4",
"@babel/register": "7.7.4",
"babel-eslint": "10.0.3",
"chai": "4.2.0",
"eslint": "6.7.2",
"eslint-config-airbnb": "18.0.1",
"eslint-plugin-import": "2.19.1",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.17.0",
"mocha": "6.2.2",
"prop-types": "15.7.2",
"react": "16.12.0",
"rimraf": "3.0.0",
"sinon-chai": "3.3.0"
},
"peerDependencies": {
"prop-types": "^15",
"react": "^16.6.3"
}
}