forked from fusioncharts/react-fusioncharts-component
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "react-fusioncharts",
"version": "3.1.2",
"description": "Simple and Lightweight React component for FusionCharts JavaScript Charting Library",
"main": "lib/ReactFC.js",
"author": {
"name": "FusionCharts",
"email": "support@fusioncharts.com"
},
"license": "MIT",
"contributors": [
{
"name": "Rousan Ali",
"email": "rousan@fusioncharts.com",
"url": "https://github.com/rousan"
},
{
"name": "Subrata Mal",
"email": "subrata@fusioncharts.com",
"url": "https://github.com/subratamal"
},
{
"name": "Ashok Mandal",
"email": "askipop@gmail.com",
"url": "https://github.com/ashok1994"
},
{
"name": "Rohan Dey",
"email": "rohanoid5@gmail.com",
"url": "https://github.com/rohanoid5"
}
],
"homepage": "https://github.com/fusioncharts/react-fusioncharts-component",
"repository": {
"type": "git",
"url": "https://github.com/fusioncharts/react-fusioncharts-component.git"
},
"bugs": {
"url": "https://github.com/fusioncharts/react-fusioncharts-component/issues"
},
"dependencies": {
"uuid": "^3.2.1"
},
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-es2015": "^7.0.0-beta.53",
"@babel/preset-react": "^7.0.0",
"@babel/preset-stage-0": "^7.0.0",
"babel-loader": "^8.0.4",
"eslint": "^4.19.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"fusioncharts": "^3.13.5-sr.1",
"jest": "^22.4.2",
"lodash": "^4.17.11",
"nodemon": "^2.0.2",
"prop-types": "^15.6.2",
"react": "^16.12.0",
"react-addons-test-utils": "15.3.0",
"react-component-gulp-tasks": "^0.7.6",
"react-dom": "^16.12.0",
"react-test-renderer": "^16.2.0",
"serve": "^10.0.1",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.1"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0 || ^16.0.0"
},
"scripts": {
"build:lib": "babel ./src -d ./lib && mv ./lib/DrillDown.js ./components/DrillDown.js",
"build:umd": "webpack",
"build": "npm run build:lib && npm run build:umd",
"build:example": "npm run build:lib && webpack --config webpack.config.example.js",
"start": "npm run build:example && serve example/",
"test": "jest --coverage --verbose",
"test:report": "npm test && serve coverage/lcov-report -o",
"watch": "nodemon --ignore example/dist --watch example --watch src --exec \"npm run start\""
},
"keywords": [
"react",
"react-component",
"component",
"fusioncharts",
"javascript-charts",
"interactive-charts",
"charts",
"graphs",
"visualization",
"data-visualization",
"dataviz",
"browserify",
"webpack"
]
}