forked from esbullington/react-d3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.01 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
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "react-d3",
"version": "0.4.0",
"description": "ReactJS charts using d3",
"author": "Eric S. Bullington",
"homepage": "https://reactiva.github.io/react-d3-website/",
"keywords": [
"d3",
"react",
"charts",
"ReactJS",
"react-component"
],
"license": "MIT",
"main": "src/index.js",
"devDependencies": {
"babelify": "^6.1.3",
"browser-sync": "^2.7.10",
"browserify": "~10.2.4",
"browserify-global-shim": "^1.0.0",
"chai": "^3.0.0",
"chalk": "^1.0.0",
"del": "^1.2.0",
"glob": "^5.0.10",
"gulp": "^3.9.0",
"gulp-filter": "^2.0.2",
"gulp-jshint": "^1.11.0",
"gulp-load-plugins": "^1.0.0-rc",
"gulp-react": "^3.0.1",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^1.5.2",
"gulp-uglify": "^1.2.0",
"handlebars": "^3.0.3",
"highlight.js": "^8.6.0",
"jshint-stylish": "^2.0.0",
"karma": "^0.12.36",
"karma-browserify": "^4.2.1",
"karma-chai": "^0.1.0",
"karma-chai-plugins": "^0.6.0",
"karma-chrome-launcher": "^0.1.12",
"karma-cli": "0.0.4",
"karma-firefox-launcher": "^0.1.6",
"karma-mocha": "^0.1.10",
"karma-phantomjs-launcher": "^0.2.0",
"merge-stream": "^0.1.7",
"mocha": "^2.2.5",
"react-tools": "^0.13.3",
"reactify": "^1.1.1",
"uglify-js": "^2.4.23",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.2.2"
},
"dependencies": {
"d3": "^3.5.0",
"react": ">0.12.0"
},
"scripts": {
"env": "env",
"test": "gulp test",
"watch": "gulp watch",
"minified": "gulp release && npm run build && NODE_ENV=production browserify -t [ reactify --es6 ] --standalone rd3 ./build/cjs/index.js | uglifyjs -c > dist/public/js/react-d3.min.js"
},
"browserify": {
"transform": [
[
"babelify",
{
"extensions": [
".js",
".jsx"
]
}
]
]
},
"repository": {
"type": "git",
"url": "https://github.com/esbullington/react-d3.git"
}
}