forked from wangyuan0108/LazyLoadSearchSelect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 918 Bytes
/
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
{
"name": "lazyloadsearchselect",
"version": "1.0.5",
"description": "支持搜索和下拉懒加载功能的select",
"main": "./lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf lib && mkdir lib",
"lib": "npm run clean && babel src --out-dir lib --copy-files",
"prepublish": "npm run lib"
},
"files": [
"lib",
"README.md"
],
"author": "water",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.6",
"babel-plugin-istanbul": "^5.2.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"keywords": [
"antd",
"select"
],
"dependencies": {
"antd": "^3.20.7",
"lodash": "^4.17.15",
"uuid": "^3.3.2"
}
}