-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
117 lines (117 loc) · 3.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
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": "antd-virtual-select",
"version": "1.1.2",
"description": "Long list optimization antd select component",
"license": "ISC",
"main": "lib/index.js",
"module": "es/index.js",
"scripts": {
"start": "cross-env NODE_ENV=development bisheng start",
"site": "cross-env NODE_ENV=production bisheng build",
"build": "webpack --config webpack.config.js",
"lib": "gulp lib",
"es": "gulp es",
"test": "jest .",
"propub": "gulp && webpack --config webpack.config.js && npm run test"
},
"files": [
"es",
"dist",
"lib",
"utils",
"decorator"
],
"repository": {
"type": "git",
"url": "git+https://github.com/iblq/antd-virtual-select.git"
},
"bugs": {
"url": "https://github.com/iblq/antd-virtual-select/issues"
},
"homepage": "https://github.com/iblq/antd-virtual-select#readme",
"keywords": [
"antd",
"select",
"virtual",
"component",
"long list"
],
"author": {
"name": "baolq"
},
"dependencies": {
"moment": "^2.22.2"
},
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.2.0",
"@babel/plugin-proposal-decorators": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/plugin-transform-classes": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.4.5",
"@doddle/doddle-bisheng-theme": "0.0.9",
"@doddle/eslint-config-doddle": "^0.0.11",
"@types/react": "^16.8.23",
"@types/react-dom": "^16.8.5",
"antd": "^3.20.1",
"babel-loader": "^8.0.5",
"bind-decorator": "^1.0.11",
"clean-webpack-plugin": "^0.1.19",
"cross-env": "^5.2.0",
"css-loader": "^0.28.9",
"del": "^3.0.0",
"dva": "^2.4.1",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"file-loader": "^2.0.0",
"gulp": "^4.0.0",
"gulp-babel": "^8.0.0",
"gulp-typescript": "^5.0.1",
"html-webpack-plugin": "^3.2.0",
"invariant": "^2.2.4",
"jest": "^24.7.1",
"jest-environment-enzyme": "^7.0.2",
"jest-enzyme": "^7.0.2",
"jest-transform-css": "^2.0.0",
"less": "^3.8.1",
"less-loader": "^4.1.0",
"merge2": "^1.2.3",
"mini-css-extract-plugin": "^0.4.4",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-test-renderer": "^16.12.0",
"source-map-loader": "^0.2.4",
"style-loader": "^0.20.1",
"ts-loader": "^6.0.4",
"typescript": "^3.5.3",
"url-loader": "^0.6.2",
"webpack": "^4.23.1",
"webpack-cli": "^3.1.2"
},
"peerDependencies": {
"antd": ">=3.0.0",
"react": ">=16.8.0",
"react-dom": ">=16.0.0"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/packages/"
],
"moduleDirectories": [
"node_modules",
"packages"
],
"transform": {
"^.+\\.jsx?$": "babel-jest",
".+\\.(css|styl|less|sass|scss)$": "jest-transform-css"
},
"setupFilesAfterEnv": [
"jest-enzyme"
],
"testEnvironment": "enzyme"
}
}