forked from WICG/virtual-scroller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 987 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
{
"name": "virtual-scroller",
"version": "0.0.1",
"description": "A virtual scroller that optimizes the rendering of DOM according to the visible area and available data.",
"main": "virtual-scroller.js",
"module": "virtual-scroller.js",
"flat": true,
"directories": {},
"devDependencies": {
"clang-format": "^1.2",
"lit-html": "latest",
"preact": "^8.2.6",
"streaming-spec": "github:jakearchibald/streaming-html-spec#master"
},
"scripts": {
"gh-pages": "./deploy-to-gh-pages.sh",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "find . -name '*.js' | grep -v node_modules | xargs clang-format --style=file -i"
},
"repository": {
"type": "git",
"url": "git+https://github.com/valdrinkoshi/virtual-scroller.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/valdrinkoshi/virtual-scroller/issues"
},
"homepage": "https://github.com/valdrinkoshi/virtual-scroller#readme"
}