-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
78 lines (78 loc) · 1.84 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
{
"name": "ant-virtual-table",
"version": "0.1.11",
"description": "",
"main": "dist/index.js",
"directories": {
"example": "examples"
},
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"start": "webpack-dev-server --mode development --open --port 3001",
"analyzer": "webpack --mode production",
"prepublish": "babel src -d dist --copy-files"
},
"jest": {
"setupFiles": [
"./tests/setup.js"
],
"collectCoverageFrom": [
"**/src/virtualTable/**"
],
"transform": {
"^.+\\.(js|jsx)$": "babel-jest",
"^.+\\.css$": "./tests/css-transform.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/ctq123/ant-virtual-table.git"
},
"keywords": [
"virtual-table",
"ant",
"ant-table",
"virtualied",
"虚拟渲染",
"虚拟表格",
"antd",
"virtual"
],
"author": "tqcheng",
"license": "ISC",
"bugs": {
"url": "https://github.com/ctq123/ant-virtual-table/issues"
},
"homepage": "https://github.com/ctq123/ant-virtual-table#readme",
"files": [
"dist"
],
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-jest": "23.6.0",
"babel-loader": "7.1.5",
"babel-plugin-import": "^1.12.0",
"babel-preset-env": "1.7.0",
"babel-preset-react": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"css-loader": "1.0.0",
"html-webpack-plugin": "3.2.0",
"style-loader": "0.23.1",
"webpack": "4.22.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "3.1.2",
"webpack-dev-server": "3.1.10"
},
"dependencies": {
"antd": "^3.26.2",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.2",
"lodash.throttle": "^4.1.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"jest": "^21.2.1",
"sinon": "^7.3.2"
}
}