-
Notifications
You must be signed in to change notification settings - Fork 492
/
package.json
117 lines (117 loc) · 3.45 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
108
109
110
111
112
113
114
115
116
117
{
"name": "react-weui",
"version": "1.2.3",
"description": "weui for react",
"main": "./build/packages/index.js",
"scripts": {
"start": "webpack-dev-server",
"start:doc": "webpack-dev-server --config webpack.config.doc.js --progress --colors --port 8080",
"build": "node scripts/build.js -p",
"lint": "eslint 'src/**/*.js'",
"pretest": "npm run lint",
"test": "mocha",
"test:watch": "npm run test -- --watch",
"coverage": "npm run lint & nyc --require babel-core/register mocha && nyc report --reporter=lcov",
"postpublish": "gh-pages -d ./build/demo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/weui/react-weui.git"
},
"keywords": [
"mobile",
"ui",
"framework",
"weui",
"react",
"wechat"
],
"author": "wechat ui team",
"license": "MIT",
"bugs": {
"url": "https://github.com/weui/react-weui/issues"
},
"homepage": "https://github.com/weui/react-weui",
"dependencies": {
"babel-runtime": "^6.26.0",
"prop-types": "^15.7.2",
"weui": "^1.1.0"
},
"devDependencies": {
"autoprefixer": "^6.3.5",
"babel": "^6.0.0",
"babel-cli": "^6.18.0",
"babel-core": "^6.0.0",
"babel-eslint": "^6.0.0",
"babel-loader": "^6.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-istanbul": "^3.0.0",
"babel-plugin-transform-class-properties": "^6.18.0",
"babel-plugin-transform-require-ignore": "0.0.2",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-es2017": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"babel-standalone": "^6.18.2",
"chalk": "^1.1.3",
"codemirror": "^5.20.2",
"css-loader": "^0.28.4",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^3.17.1",
"eslint-plugin-react": "^3.11.3",
"extract-text-webpack-plugin": "^3.0.0",
"fastclick": "^1.0.6",
"file-loader": "^0.8.5",
"gh-pages": "^1.0.0",
"github-markdown-css": "^2.4.1",
"highlight.js": "^9.8.0",
"history": "^4.5.1",
"html-webpack-plugin": "^2.14.0",
"ignore-styles": "^5.0.1",
"jsdom": "9.8.3",
"jsdom-global": "2.1.0",
"json-loader": "^0.5.4",
"less": "^2.7.2",
"less-loader": "^4.0.5",
"minimist": "^1.2.0",
"mocha": "^6.2.0",
"nyc": "^9.0.1",
"open-browser-webpack-plugin": "0.0.1",
"postcss-loader": "^2.0.6",
"raw-loader": "^0.5.1",
"react": "^16.9.0",
"react-codemirror": "^0.2.6",
"react-docgen": "^3.0.0",
"react-dom": "^16.9.0",
"react-fontawesome": "^1.3.1",
"react-remarkable": "^1.1.1",
"react-router": "^4.1.1",
"react-router-dom": "^4.1.1",
"react-split-pane": "^0.1.52",
"react-transition-group": "^2.0.2",
"rimraf": "^2.4.3",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-less": "0.1.3",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-progress": "^0.2.1",
"rollup-plugin-replace": "^1.1.1",
"rollup-plugin-uglify": "^1.0.1",
"semver": "^6.3.0",
"sinon": "^1.17.2",
"style-loader": "^0.13.0",
"uglify-loader": "^1.2.0",
"url-loader": "^0.5.7",
"webpack": "^3.2.0",
"webpack-dev-server": "^2.5.1"
},
"peerDependencies": {
"react": ">= 16.0.0",
"react-dom": ">= 16.0.0"
}
}