This repository has been archived by the owner on May 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.57 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@doubledutch/react-csv",
"version": "1.1.2",
"description": "Build CSV files on the fly basing on Array/literal object of data ",
"main": "index.js",
"jsnext:main": "src/index.js",
"scripts": {
"compile": "babel -d lib/ src/ --no-comments",
"prepublish": "npm run compile",
"pretest": "npm run compile",
"test2": "node_modules/.bin/_mocha test",
"test": "node_modules/.bin/babel-node node_modules/.bin/babel-istanbul cover node_modules/.bin/_mocha -- test/*.js",
"coverage": "istanbul cover _mocha -- --ui bdd -R spec -t 5000;open ./coverage/lcov-report/index.html",
"cover": "node_modules/.bin/babel-node node_modules/.bin/babel-istanbul cover node_modules/.bin/_mocha",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls",
"docgen": "documentation build src/** -f html -o docs",
"styleguide-server": "styleguidist server",
"styleguide-build": "styleguidist build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/react-csv/react-csv.git"
},
"keywords": [
"csv",
"excel",
"react",
"file",
"IO",
"download",
"hyperlink",
"component",
"reuse",
"ES7",
"babel",
"IE11"
],
"author": "Abdennour TOUMI <http://abdennoor.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/react-csv/react-csv/issues"
},
"homepage": "https://github.com/react-csv/react-csv#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.18.2",
"babel-istanbul": "^0.12.2",
"babel-loader": "^6.2.8",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"browserify": "^13.3.0",
"console-info": "0.0.4",
"coveralls": "^3.0.2",
"cryptiles": ">=4.1.2",
"css-loader": "^0.26.1",
"documentation": "^4.0.0-rc.1",
"enzyme": "^2.8.2",
"expect": "^1.20.2",
"extract-text-webpack-plugin": "^1.0.1",
"hoek": ">=4.2.1",
"isparta-loader": "^2.0.0",
"jsdom": "9.8.3",
"jsdom-global": "2.1.0",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.2.0",
"node-sass": "^4.5.3",
"prop-types": "^15.5.8",
"react": "^15.5.4",
"react-docgen": "^2.13.0",
"react-dom": "^15.5.4",
"react-styleguidist": "^8.0.6",
"react-test-renderer": "^15.5.4",
"sass-loader": "^4.0.2",
"sinon": "^1.17.6",
"style-loader": "^0.13.1",
"uglify-js": "^2.7.5",
"webpack": "^1.13.3",
"webpack-dev-middleware": "^1.8.4",
"webpack-dev-server": "^3.1.14",
"webpack-hot-middleware": "^2.13.2"
}
}