UNPKG

2.5 kBJSONView Raw
1{
2 "name": "react-virtualized-auto-sizer",
3 "version": "1.0.15",
4 "description": "Standalone version of the AutoSizer component from react-virtualized",
5 "author": "Brian Vaughn <brian.david.vaughn@gmail.com> (https://github.com/bvaughn/)",
6 "contributors": [
7 "Brian Vaughn <brian.david.vaughn@gmail.com> (https://github.com/bvaughn/)"
8 ],
9 "license": "MIT",
10 "repository": {
11 "type": "git",
12 "url": "https://github.com/bvaughn/react-virtualized-auto-sizer.git"
13 },
14 "keywords": [
15 "react",
16 "reactjs",
17 "virtual",
18 "window",
19 "windowed",
20 "list",
21 "scrolling",
22 "infinite",
23 "virtualized",
24 "table",
25 "grid",
26 "spreadsheet"
27 ],
28 "source": "src/index.ts",
29 "main": "dist/react-virtualized-auto-sizer.js",
30 "module": "dist/react-virtualized-auto-sizer.module.js",
31 "types": "dist/react-virtualized-auto-sizer.d.ts",
32 "files": [
33 "dist"
34 ],
35 "scripts": {
36 "clear": "npm run clear:parcel-cache & npm run clear:builds & npm run clear:node_modules",
37 "clear:builds": "rm -rf ./dist",
38 "clear:parcel-cache": "rm -rf ./.parcel-cache",
39 "clear:node_modules": "rm -rf ./node_modules",
40 "prerelease": "rm -rf ./.parcel-cache && parcel build",
41 "prettier": "prettier --write \"**/*.{css,html,js,json,jsx,ts,tsx}\"",
42 "prettier:ci": "prettier --check \"**/*.{css,html,js,json,jsx,ts,tsx}\"",
43 "test": "jest",
44 "test:watch": "jest --watch",
45 "typescript": "tsc --noEmit",
46 "typescript:watch": "tsc --noEmit --watch"
47 },
48 "lint-staged": {
49 "{example,src}/**/*.{js,json,css}": [
50 "prettier --write",
51 "git add"
52 ],
53 "**/*.js": "eslint --max-warnings 0"
54 },
55 "devDependencies": {
56 "@babel/core": "^7.21.4",
57 "@babel/helper-create-class-features-plugin": "^7.21.4",
58 "@babel/plugin-proposal-class-properties": "^7.18.6",
59 "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
60 "@parcel/core": "^2.8.3",
61 "@parcel/packager-ts": "^2.8.3",
62 "@parcel/transformer-typescript-types": "^2.8.3",
63 "@types/jest": "^26.0.15",
64 "@types/react": "^18",
65 "@types/react-dom": "^18",
66 "jest": "^29.4.3",
67 "jest-environment-jsdom": "^29.4.3",
68 "parcel": "^2.8.3",
69 "prettier": "^2.8.6",
70 "react": "^18",
71 "react-dom": "^18",
72 "ts-jest": "^29.0.5",
73 "typescript": "^4.1.2"
74 },
75 "peerDependencies": {
76 "react": "^15.3.0 || ^16.0.0-alpha || ^17.0.0 || ^18.0.0-rc",
77 "react-dom": "^15.3.0 || ^16.0.0-alpha || ^17.0.0 || ^18.0.0-rc"
78 }
79}