forked from dolezel/react-csv-downloader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.78 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
{
"name": "react-csv-downloader",
"version": "0.1.4",
"description": "React csv downloader",
"main": "dist/index.js",
"scripts": {
"test": "karma start --single-run --browsers PhantomJS",
"eslint": "./node_modules/.bin/eslint src/",
"start": "./node_modules/.bin/webpack-dev-server --progress --colors --hot --inline",
"build": "./node_modules/.bin/babel src -d dist",
"postinstall": "npm run build"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Terminux/react-csv-downloader.git"
},
"keywords": [
"React",
"CSV",
"Export",
"Download"
],
"author": "Castellant Guillaume <gcastellant@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Terminux/react-csv-downloader/issues"
},
"homepage": "https://github.com/Terminux/react-csv-downloader#readme",
"devDependencies": {
"babel": "^6.3.26",
"babel-cli": "^6.3.17",
"babel-core": "^6.3.26",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"eslint": "^2.8.0",
"eslint-config-airbnb": "^8.0.0",
"eslint-plugin-import": "^1.6.0",
"eslint-plugin-jsx-a11y": "^1.0.3",
"eslint-plugin-react": "^5.0.1",
"karma": "^0.13.19",
"karma-chai-plugins": "^0.7.0",
"karma-cli": "^0.1.2",
"karma-mocha": "^0.2.1",
"karma-mocha-reporter": "^2.0.2",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"mocha": "^2.4.5",
"phantomjs-prebuilt": "^2.1.3",
"react-hot-loader": "^1.3.0",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.14.0"
},
"dependencies": {
"react": "^15.0.1",
"react-dom": "^15.0.1"
}
}