-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
49 lines (49 loc) · 1.23 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
{
"name": "react-plotlyjs",
"version": "0.4.3",
"description": "ReactJS / PlotlyJS integration. Draw plotly graphs in your react app.",
"main": "lib/PlotlyComponent.js",
"author": "Ben Jeffery",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/benjeffery/react-plotlyjs.git"
},
"dependencies": {
"lodash.clonedeep": "^4.5.0",
"prop-types": "^15.5.10",
"react": "^15.6.1||^16.0.0"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-1": "^6.22.0",
"gulp": "^3.9.1",
"gulp-bump": "^2.5.1",
"gulp-git": "^2.4.2",
"gulp-util": "^3.0.8"
},
"peerDependencies": {
"react": "^15.0.0||^16.0.0"
},
"browserify-shim": {
"react": "global:React"
},
"scripts": {
"prepare": "npm run compile",
"compile": "babel --presets es2015,stage-1,react -d lib/ src/",
"bump": "gulp bump",
"bump:minor": "gulp bump:minor",
"bump:major": "gulp bump:major",
"release": "gulp publish:tag && gulp publish:npm",
"test": "echo \"no tests yet\" && exit 0"
},
"keywords": [
"react",
"react-component",
"plotly",
"graph",
"plot"
]
}