-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 1.82 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
{
"name": "vscroll",
"version": "1.6.2",
"description": "Virtual scroll engine",
"main": "dist/bundles/vscroll.umd.js",
"module": "dist/bundles/vscroll.esm5.js",
"esm5": "dist/esm5/index.js",
"esm2015": "dist/esm2015/index.js",
"fesm5": "dist/bundles/vscroll.esm5.js",
"fesm2015": "dist/bundles/vscroll.esm6.js",
"types": "dist/typings/index.d.ts",
"type": "module",
"files": [
"dist"
],
"author": "Denis Hilt <[email protected]>",
"homepage": "https://github.com/dhilt/vscroll",
"repository": {
"type": "git",
"url": "https://github.com/dhilt/vscroll.git"
},
"bugs": {
"url": "https://github.com/dhilt/vscroll/issues"
},
"license": "MIT",
"scripts": {
"lint": "eslint . --ext .ts",
"jest": "jest",
"watch": "jest --watch",
"build": "node build",
"test": "npm run lint && npm run jest",
"prepack": "npm run build",
"checkGit": "sh ./uncommited.sh",
"prepublishOnly": "npm run checkGit && npm run test && npm run build && npm run checkGit"
},
"dependencies": {
"tslib": "^2.3.1"
},
"devDependencies": {
"@babel/core": "^7.16.12",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@rollup/plugin-node-resolve": "^13.1.3",
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"babel-jest": "^27.4.6",
"chalk": "^5.0.0",
"eslint": "^8.8.0",
"jest": "^27.4.7",
"rollup": "^2.67.0",
"rollup-plugin-license": "^2.6.1",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"shelljs": "^0.8.5",
"typescript": "^4.5.5"
},
"keywords": [
"vscroll",
"virtual",
"virtualizing",
"virtualization",
"scroll",
"scrolling",
"scroller",
"javascript",
"typescript"
]
}