This repository has been archived by the owner on Dec 26, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 83
/
package.json
107 lines (107 loc) · 3.06 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "rd3",
"version": "0.8.0",
"description": "ReactJS charts using d3",
"author": "Lim Yang Wei",
"homepage": "https://reactiva.github.io/react-d3-website/",
"keywords": [
"d3",
"react",
"charts",
"ReactJS",
"react-component"
],
"license": "MIT",
"main": "./build/cjs/index.js",
"devDependencies": {
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babelify": "^7.2.0",
"browser-sync": "^2.7.10",
"browserify": "^13.0.0",
"browserify-global-shim": "^1.0.0",
"chai": "^3.0.0",
"chalk": "^1.0.0",
"create-react-class": "^15.5.3",
"d3": "^3.5.0",
"del": "^1.2.0",
"eslint": "3.19.0",
"eslint-config-airbnb": "15.0.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "7.0.1",
"glob": "^5.0.10",
"gulp": "^3.9.0",
"gulp-babel": "^6.1.2",
"gulp-filter": "^2.0.2",
"gulp-load-plugins": "^1.0.0-rc",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^1.5.2",
"gulp-uglify": "^1.2.0",
"handlebars": "^3.0.3",
"highlight.js": "^8.6.0",
"karma": "^1.7.1",
"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",
"phantomjs": "^2.1.3",
"prop-types": "^15.5.10",
"react": "^16.0.0",
"react-addons-test-utils": "^15.0.1",
"react-dom": "^16.0.0",
"uglify-js": "^2.4.23",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.2.2"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.1 || ^16.0.0",
"react-dom": "^0.14.0 || ^15.0.1 || ^16.0.0",
"d3": "^3.5.0"
},
"scripts": {
"pretest": "npm run lint",
"test": "gulp test",
"watch": "gulp watch",
"tdd": "gulp tdd",
"release": "gulp release",
"clean": "gulp clean:build",
"prepublish": "npm run clean && npm run release",
"lint": "./node_modules/eslint/bin/eslint.js --ext .jsx --ext .js src",
"lint:fix": "./node_modules/eslint/bin/eslint.js --fix --ext .jsx --ext .js src",
"docs:clean": "rm -rf _book",
"docs:prepare": "gitbook install",
"docs:build": "npm run docs:prepare && gitbook build",
"docs:watch": "npm run docs:prepare && gitbook serve",
"docs:publish": "npm run docs:clean && npm run docs:build && cd _book && git init && git commit --allow-empty -m 'update book' && git checkout -b gh-pages && touch .nojekyll && git add . && git commit -am 'update book' && git push [email protected]:yang-wei/rd3 gh-pages --force"
},
"browserify": {
"transform": [
[
"babelify",
{
"extensions": [
".js",
".jsx"
]
}
]
]
},
"repository": {
"type": "git",
"url": "https://github.com/yang-wei/rd3.git"
},
"files": [
"build",
"src"
]
}