forked from adcentury/react-mobile-picker
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
74 lines (74 loc) · 2.03 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
{
"name": "react-scrollable-picker",
"version": "1.0.2",
"description": "An iOS like select box component for React",
"main": "lib/react-scrollable-picker.js",
"repository": {
"type": "git",
"url": "ayame30/react-scrollable-picker"
},
"dependencies": {
"prop-types": "^15.6.0"
},
"files": [
"LICENCE",
"README.md",
"src",
"lib"
],
"keywords": [
"react",
"react scrollable picker",
"react mobile picker",
"mobile picker",
"picker",
"react-component",
"react components",
"react ui",
"mobile ui"
],
"devDependencies": {
"autoprefixer-loader": "^3.1.0",
"babel-core": "^6.3.17",
"babel-eslint": "^4.1.6",
"babel-loader": "^6.2.0",
"babel-plugin-react-transform": "^2.0.0-beta1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"css-loader": "^0.23.0",
"eslint": "^1.10.3",
"eslint-plugin-babel": "^3.0.0",
"eslint-plugin-react": "^3.11.3",
"express": "^4.13.3",
"less": "^2.5.3",
"less-loader": "^2.2.2",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-transform-catch-errors": "^1.0.0",
"react-transform-hmr": "^1.0.1",
"redbox-react": "^1.2.0",
"rimraf": "^2.4.4",
"style-loader": "^0.13.0",
"webpack": "^1.12.9",
"webpack-dev-middleware": "^1.4.0",
"webpack-hot-middleware": "^2.6.0"
},
"peerDependencies": {
"react": ">=0.14.0 <17.0.0",
"react-dom": ">=0.14.0 <17.0.0"
},
"scripts": {
"clean": "rimraf lib",
"start": "node examples/server.js",
"lint": "eslint src",
"build-examples": "rimraf examples/dist && eslint examples && set NODE_ENV=production && webpack --progress --hide-modules --config examples/webpack.build.js",
"build": "npm run clean && npm run lint && set NODE_ENV=production && webpack --progress --hide-modules --config webpack.build.js",
"test": "npm run lint"
},
"author": {
"name": "Lei Lei",
"email": "[email protected]"
},
"license": "MIT"
}