This repository has been archived by the owner on Jun 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
68 lines (68 loc) · 1.49 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "react-nvd3",
"description": "React nvd3 reusable graph components.",
"version": "0.5.7",
"keywords": [
"React",
"D3",
"NVD3",
"graph",
"reusable",
"chart"
],
"homepage": "https://github.com/NuCivic/react-nvd3",
"author": {
"name": "Mariano Carballal",
"email": "[email protected]",
"url": "https://github.com/topicus"
},
"repository": {
"type": "git",
"url": "[email protected]:NuCivic/react-nvd3.git"
},
"bugs": {
"url": "https://github.com/NuCivic/react-nvd3/issues"
},
"license": "MIT",
"engines": {
"node": ">= 0.8.0"
},
"main": "./dist/react-nvd3.min.js",
"scripts": {
"start": "gulp serve"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^6.2.0",
"babel-plugin-array-includes": "^1.1.1",
"babel-plugin-transform-runtime": "^6.1.18",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.1.18",
"babel-preset-stage-0": "^6.1.18",
"babel-runtime": "^5.8.34",
"browser-sync": "^2.8.2",
"gulp": "^3.9.0",
"gulp-concat": "^2.6.0",
"gulp-jest": "^1.0.0",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^1.3.0",
"gulp-webpack": "^1.5.0",
"jest": "^19.0.2",
"jest-cli": "^19.0.2",
"webpack": "^2.3.3"
},
"dependencies": {
"d3": "^3.5.16",
"nvd3": "^1.8.2"
},
"peerDependencies": {
"react": ">=0.14.0",
"react-dom": ">=0.14.0"
},
"babel": {
"presets": [
"es2015",
"react"
]
}
}