-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.33 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.33 KB
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
{
"name": "wx-chart-react",
"version": "1.0.2",
"description": "A react adapter for wx-chart",
"main": "index.jsx",
"directories": {
"test": "test"
},
"scripts": {
"test": "karma start",
"build": "gulp build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xch89820/wx-chart-react.git"
},
"keywords": [
"react",
"wx-chart"
],
"author": "Jone Casper",
"license": "MIT",
"bugs": {
"url": "https://github.com/xch89820/wx-chart-react/issues"
},
"homepage": "https://github.com/xch89820/wx-chart-react#readme",
"browserify-shim": {
"react": "global:React",
"react-dom": "global:ReactDOM",
"wx-chart": "global:WxChart"
},
"browserify": {
"transform": [
[
"babelify"
],
[
"browserify-replace",
{
"replace": [
{
"from": "__GLOBAL__DEBUG__WX__",
"to": false
}
]
}
],
[
"browserify-shim"
]
]
},
"dependencies": {
"react": "^16.4.0",
"react-dom": "^16.4.0",
"wx-chart": "^1.0.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-espower": "^2.3.2",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-3": "^6.22.0",
"babelify": "^7.3.0",
"browserify": "^13.3.0",
"browserify-replace": "^0.9.0",
"browserify-shim": "^3.8.14",
"bundle-collapser": "^1.2.1",
"chai": "^3.5.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-concat": "^2.6.1",
"gulp-insert": "^0.5.0",
"gulp-jshint": "^2.0.4",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.5.4",
"gulp-sourcemaps": "^2.3.0",
"gulp-streamify": "^1.0.2",
"gulp-template": "^4.0.0",
"gulp-uglify": "^2.0.0",
"gulp-util": "^3.0.8",
"jasmine": "^2.5.3",
"jshint": "^2.9.4",
"jshint-stylish": "^2.2.1",
"karma": "^1.4.0",
"karma-babel-preprocessor": "^6.0.1",
"karma-browserify": "^5.1.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-jasmine": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.1",
"mocha": "^3.2.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.8.0"
}
}