forked from sergi/virtual-list
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 879 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
{
"name": "virtual-list",
"version": "1.0.2",
"description": "Allows the developer to create massively long lists that perform extremely fast by loading just the part of the list showing up on the viewport, and by optimizing the amount of DOM operations and reflows.",
"dependencies": {
"lodash.throttle": "^4.1.1"
},
"devDependencies": {
"uglifyjs-webpack-plugin": "^1.1.2",
"webpack": "^3.10.0"
},
"scripts": {
"build": "webpack"
},
"keywords": [
"list",
"buffer",
"render",
"html",
"infinite",
"virtual",
"performance",
"dom"
],
"main": "./dist/vlist.js",
"bugs": {
"url": "https://github.com/MHolmes91/virtual-list/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/MHolmes91/virtual-list.git"
},
"author": "Mark Holmes <[email protected]>",
"license": "MIT"
}