-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
49 lines (49 loc) · 1.24 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-sparkline",
"description": "React component for rendering simple sparklines with D3",
"version": "2.0.0",
"author": "Kyle Mathews <[email protected]>",
"bugs": {
"url": "https://github.com/KyleAMathews/react-sparkline/issues"
},
"dependencies": {
"d3": "^3.5.6"
},
"devDependencies": {
"cjsx-loader": "^2.0.1",
"coffee-loader": "^0.7.2",
"coffee-react": "^4.0.0",
"coffee-script": "^1.10.0",
"css-loader": "^0.19.0",
"faker": "^3.0.1",
"react": "^0.14.0",
"react-dom": "^0.14.0",
"react-hot-loader": "^1.3.0",
"react-simple-table": "^0.6.1",
"style-loader": "^0.12.4",
"underscore": "^1.8.3",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.12.0"
},
"homepage": "https://github.com/KyleAMathews/react-sparkline",
"keywords": [
"react",
"react-component",
"sparkline",
"d3"
],
"license": "MIT",
"main": "dist/index.js",
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"repository": {
"type": "git",
"url": "https://github.com/KyleAMathews/react-sparkline.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "./node_modules/.bin/webpack-dev-server --hot"
}
}