forked from codesuki/react-d3-components
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1017 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 1017 Bytes
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
{
"name": "react-d3-components",
"version": "0.3.6",
"description": "D3 components for React",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/codesuki/react-d3-components.git"
},
"keywords": [
"d3",
"react",
"graph",
"visualization",
"chart",
"react-component"
],
"author": "Neri Marschik <marschik_neri@cyberagent.co.jp> (http://www.cyberagent.co.jp)",
"license": "MIT",
"bugs": {
"url": "https://github.com/codesuki/react-d3-components/issues"
},
"homepage": "https://github.com/codesuki/react-d3-components",
"dependencies": {
"d3": "^3.5.3",
"react": "^0.12.2"
},
"devDependencies": {
"babel": "^4.6.4",
"babelify": "^5.0.3",
"browserify": "^8.1.3"
},
"scripts": {
"prepublish": "babel -c -d ./lib ./src/",
"postpublish": "rm -r ./lib",
"build:js": "browserify src/index.jsx --extension=.jsx --no-bundle-external --standalone ReactD3 > dist/react-d3-components.js"
},
"browserify": {
"transform": [
"babelify"
]
}
}