-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (48 loc) · 1.34 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-mini-chart-components",
"version": "0.1.1",
"description": "A collection of light-weight SVG mini chart components - with no dependencies.",
"main": "index.js",
"files": [
"README.md",
"LICENSE",
"index.js",
"lib/"
],
"keywords": [
"chart",
"gauge",
"graph"
],
"scripts": {
"test": "",
"build": "babel --presets react,es2015 src/ --out-dir lib/",
"dev": "webpack-dev-server --inline --hot"
},
"author": "Brody McKee",
"license": "GPL-3.0",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.4",
"babel-loader": "^6.2.4",
"babel-plugin-react-transform": "^2.0.2",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"eslint": "^2.5.1",
"eslint-plugin-babel": "^3.1.0",
"eslint-plugin-react": "^4.2.3",
"eventsource-polyfill": "^0.9.6",
"react-dom": "^0.14.7",
"react-transform-hmr": "^1.0.4",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1",
"webpack-hot-middleware": "^2.10.0"
},
"dependencies": {
"react": "^0.14.7"
},
"repository": {
"type" : "git",
"url" : "https://github.com/mrmckeb/react-mini-chart-components"
}
}