-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.27 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
{
"name": "@holmberd/virtual-scroller",
"version": "1.3.1",
"description": "A custom web component for efficiently rendering lists with large number of elements",
"author": "Dag Holmberg (https://github.com/holmberd/)",
"license": "BSD-3-Clause",
"main": "dist/virtual-scroller.cjs.js",
"module": "dist/virtual-scroller.esm.js",
"files": [
"src",
"dist",
"!*/*.test.js"
],
"scripts": {
"test": "jest --no-cache --coverage",
"build": "npm test && rm -rf ./dist && node ./esbuild.js && ls -l dist"
},
"devDependencies": {
"esbuild": "^0.14.25",
"esbuild-jest": "^0.5.0",
"eslint": "^8.15.0",
"eslint-plugin-jest": "^26.2.0",
"jest": "^27.5.1"
},
"sideEffects": false,
"private": false,
"publishConfig": {
"access": "public"
},
"jest": {
"collectCoverage": false,
"transform": {
"^.+\\.js?$": [
"esbuild-jest",
{
"sourcemap": true
}
]
}
},
"repository": {
"type": "git",
"url": "git://github.com/holmberd/virtual-scroller.git"
},
"bugs": {
"url": "https://github.com/holmberd/virtual-scroller/issues"
},
"keywords": [
"virtual-scroller",
"virtual",
"virtualized",
"infinite",
"list",
"scrolling",
"table"
]
}