UNPKG

react-virtualized

Version:

React components for efficiently rendering large, scrollable lists and tabular data

187 lines (186 loc) 6.18 kB
{ "name": "react-virtualized", "description": "React components for efficiently rendering large, scrollable lists and tabular data", "author": "Brian Vaughn <brian.david.vaughn@gmail.com>", "user": "bvaughn", "version": "9.21.2", "homepage": "https://github.com/bvaughn/react-virtualized", "main": "dist/commonjs/index.js", "module": "dist/es/index.js", "jsnext:main": "dist/es/index.js", "license": "MIT", "scripts": { "build:types": "flow-copy-source --ignore \"**/*.{jest,e2e,ssr,example}.js\" source/WindowScroller dist/es/WindowScroller && flow-copy-source --ignore \"**/*.{jest,e2e,ssr,example}.js\" source/AutoSizer dist/es/AutoSizer", "build": "npm run build:commonjs && npm run build:css && npm run build:es && npm run build:demo && npm run build:umd", "build:commonjs": "npm run clean:commonjs && cross-env NODE_ENV=commonjs babel source --out-dir dist/commonjs", "build:css": "postcss source/styles.css -o styles.css --use autoprefixer", "build:demo": "npm run clean:demo && cross-env NODE_ENV=production webpack --config webpack.config.demo.js -p --bail", "build:es": "npm run clean:es && npm run build:types && cross-env NODE_ENV=es babel source --out-dir dist/es", "build:umd": "npm run clean:umd && cross-env NODE_ENV=rollup rollup -c", "check-all": "yarn prettier && yarn lint && yarn flow", "ci-check": "yarn prettier:diff && yarn lint && yarn flow", "clean": "npm run clean:commonjs && npm run clean:demo && npm run clean:es && npm run clean:umd", "clean:commonjs": "rimraf dist/commonjs", "clean:demo": "rimraf build", "clean:es": "rimraf dist/es", "clean:umd": "rimraf dist/umd", "deploy": "gh-pages -d build", "lint": "eslint 'source/**/*.js'", "typecheck": "flow check", "prebuild": "npm run typecheck && npm run lint", "prettier": "prettier --write '{playground,source}/**/*.js'", "prettier:diff": "prettier --list-different '{playground,source}/**/*.js'", "postpublish": "npm run deploy", "prepublish": "npm run build", "start": "cross-env NODE_ENV=development webpack-dev-server --hot --config webpack.config.dev.js", "test": "npm run test:jest", "test:jest": "jest --no-watchman --runInBand", "test:ci": "jest --no-watchman --maxWorkers 2 --coverage && codecov", "watch": "watch 'clear && npm run test -s' source", "watch:jest": "jest --no-watchman --watch" }, "husky": { "hooks": { "pre-commit": "pretty-quick --staged" } }, "babel": { "presets": [ "./.babelrc.js" ] }, "files": [ "dist", "styles.css" ], "repository": { "type": "git", "url": "https://github.com/bvaughn/react-virtualized.git" }, "keywords": [ "react", "reactjs", "react-component", "virtual", "list", "scrolling", "infinite", "virtualized", "table", "fixed", "header", "flex", "flexbox", "grid", "spreadsheet" ], "bugs": { "url": "https://github.com/bvaughn/react-virtualized/issues" }, "jest": { "globalSetup": "jest-environment-puppeteer/setup", "globalTeardown": "jest-environment-puppeteer/teardown", "setupFiles": [ "./source/jest-setup.js" ], "roots": [ "./source" ], "coverageReporters": [ "lcov" ], "collectCoverageFrom": [ "source/**/*.js", "!source/vendor/**", "!source/demo/**", "!source/jest-*.js", "!source/TestUtils.js", "!**/*.example.js" ], "testRegex": ".(jest|e2e|ssr).js$", "verbose": true }, "devDependencies": { "autoprefixer": "^7.2.3", "babel-cli": "^6.26.0", "babel-core": "^6.26.0", "babel-eslint": "^8.1.2", "babel-jest": "^22.0.4", "babel-loader": "7.1.2", "babel-plugin-external-helpers": "^6.22.0", "babel-plugin-flow-react-proptypes": "^21.0.0", "babel-plugin-transform-es2015-modules-commonjs": "^6.26.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.12", "babel-plugin-transform-runtime": "^6.23.0", "babel-polyfill": "^6.26.0", "babel-preset-env": "^1.6.1", "babel-preset-flow": "^6.23.0", "babel-preset-react": "^6.24.1", "babel-preset-stage-2": "^6.24.1", "codecov": "^2.2.0", "codemirror": "^5.18.0", "cross-env": "^5.0.1", "css-loader": "^0.28.7", "eslint": "^4.14.0", "eslint-config-fbjs": "^2.0.1", "eslint-config-prettier": "^2.9.0", "eslint-config-react": "^1.1.7", "eslint-plugin-babel": "^4.1.2", "eslint-plugin-flowtype": "^2.40.1", "eslint-plugin-jsx-a11y": "^6.0.3", "eslint-plugin-prettier": "^2.4.0", "eslint-plugin-react": "^7.5.1", "eslint-plugin-relay": "^0.0.20", "extract-text-webpack-plugin": "^3.0.2", "file-loader": "^1.1.6", "flow-bin": "^0.63.1", "flow-copy-source": "^1.2.1", "gh-pages": "^1.0.0", "html-webpack-plugin": "^2.30.1", "husky": "^3.0.9", "immutable": "^3.7.5", "jest": "^22.0.4", "jest-environment-puppeteer": "^1.1.1", "lint-staged": "^7.0.4", "postcss": "^6.0.14", "postcss-cli": "^4.1.1", "postcss-loader": "^2.0.9", "prettier": "1.19.1", "pretty-quick": "^2.0.1", "puppeteer": "^1.1.1", "react": "^16.2.0", "react-codemirror": "^1.0.0", "react-dom": "^16.2.0", "react-router": "^4.1.1", "react-router-dom": "^4.1.1", "react-test-renderer": "^16.2.0", "rimraf": "^2.4.3", "rollup": "^0.57.1", "rollup-plugin-babel": "^3.0.3", "rollup-plugin-commonjs": "^9.1.0", "rollup-plugin-node-resolve": "^3.3.0", "rollup-plugin-replace": "^2.0.0", "rollup-plugin-uglify": "^3.0.0", "style-loader": "^0.19.1", "watch": "^1.0.2", "webpack": "^3.10.0", "webpack-dev-server": "^3.1.11" }, "dependencies": { "babel-runtime": "^6.26.0", "clsx": "^1.0.1", "dom-helpers": "^5.0.0", "loose-envify": "^1.3.0", "prop-types": "^15.6.0", "react-lifecycles-compat": "^3.0.4" }, "peerDependencies": { "react": "^15.3.0 || ^16.0.0-alpha", "react-dom": "^15.3.0 || ^16.0.0-alpha" }, "browserify": { "transform": [ "loose-envify" ] } }