-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
116 lines (116 loc) · 3.42 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
{
"name": "antd-table-infinity",
"version": "1.1.3",
"scripts": {
"storybook": "start-storybook -p 9001 -c .storybook",
"start": "umi dev",
"clean": "rimraf umd lib es",
"build:cjs": "better-npm-run build-cjs",
"build:es": "better-npm-run build-es",
"build:umd": "better-npm-run build-umd",
"build": "yarn clean && yarn build:cjs && yarn build:es && yarn build:umi && yarn build:less",
"build:less": "lessc src/components/Table/index.less ./index.css",
"build:umi": "rimraf dist & DEBUG=umi:* HTML=none umi build",
"lint": "eslint ./**/*.jsx --ext .jsx --ext .js --fix",
"prepublishOnly": "npm version patch && yarn build"
},
"betterScripts": {
"build-cjs": {
"command": "babel src/components/Table --out-dir lib",
"env": {
"BABEL_ENV": "cjs"
}
},
"build-es": {
"command": "babel src/components/Table --out-dir es",
"env": {
"BABEL_ENV": "es"
}
},
"build-umd": {
"command": "babel src/components/Table --out-dir umd",
"env": {
"BABEL_ENV": "umd"
}
}
},
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"files": [
"dist",
"lib",
"es",
"index.css",
"src"
],
"keywords": [
"antd",
"table",
"infinity",
"virtual",
"scroll",
"loading",
"虚拟表格滚动",
"表格无限滚动加载"
],
"contributors": [
"keruyun.com"
],
"author": "[email protected]",
"bugs": {
"url": "https://github.com/Leonard-Li777/antd-table-infinity/issues"
},
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/Leonard-Li777/antd-table-infinity.git"
},
"license": "MIT",
"description": "An infinite scroll component based on antd table that supports virtual scrolling & high-performance form http://keruyun.com/",
"publishConfig": {
"registry": "http://registry.npmjs.org",
"access": "public"
},
"peerDependencies": {
"react": ">=16.4.0",
"react-dom": ">=16.4.0"
},
"dependencies": {
"antd-table-infinity": "^1.1.2",
"intersection-observer": "^0.5.1",
"lodash.throttle": "^4.1.1"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@storybook/react": "^3.4.10",
"babel-core": "^6.26.3",
"better-npm-run": "^0.1.1",
"lodash": "^4.17.11",
"rimraf": "^2.6.2",
"storybook-readme": "^3.3.0",
"umi": "^2.2.6",
"umi-plugin-react": "^1.2.3"
},
"engines": {
"node": ">=8.11.2"
}
}