-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
54 lines (54 loc) · 1.32 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
{
"name": "d3-react-sparkline",
"version": "1.2.0",
"description": "A simple component to render a sparkline with D3",
"main": "lib/d3-react-sparkline.js",
"scripts": {
"test": "standard",
"start": "node ./example/server.js",
"compile": "babel -d lib/ src/",
"prepublish": "npm test && npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/QubitProducts/d3-react-sparkline.git"
},
"keywords": [
"react",
"line",
"d3",
"sparkline"
],
"author": "Qubit",
"license": "MIT",
"bugs": {
"url": "https://github.com/QubitProducts/d3-react-sparkline/issues"
},
"homepage": "https://github.com/QubitProducts/d3-react-sparkline#readme",
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-core": "^6.4.5",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.2",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"d3": "^3.5.14",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-hot-loader": "^1.3.0",
"standard": "^7.1.2",
"webpack": "^1.12.13",
"webpack-dev-server": "^1.14.1"
},
"peerDependencies": {
"react": "*",
"d3": "*"
},
"dependencies": {
"react-faux-dom": "^2.5.0"
},
"standard": {
"parser": "babel-eslint"
}
}