forked from bodylabs/react-boxplot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1015 Bytes
/
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
{
"name": "react-boxplot",
"version": "0.3.1",
"description": "Simple SVG box plots in React",
"main": "dist/boxplot.js",
"repository": "https://www.github.com/bodylabs/react-boxplot",
"homepage": "http://github.com/bodylabs/react-boxplot",
"bugs": "https://www.github.com/bodylabs/react-boxplot/issues",
"author": "Paul Melnikow <[email protected]>",
"license": "BSD",
"keywords": ["react", "chart", "boxplot", "svg"],
"scripts": {
"build": "jsx --extension jsx src/ dist/",
"watch": "jsx --extension jsx --watch src/ dist/",
"start": "http-server -p 8086",
"open": "((sleep 1 && opn 'http://localhost:8086/examples/') &) && http-server -p 8086",
"reopen": "opn 'http://localhost:8086/'"
},
"devDependencies": {
"http-server": "~0.8.0",
"opn": "~1.0.2",
"react": "~0.12.2",
"react-tools": "~0.13.2"
},
"peerDependencies": {
"react": ">=0.12.1"
},
"dependencies": {
"simple-statistics": "~0.9.1",
"underscore": "~1.8"
}
}