react-virtualized-auto-sizer
Advanced tools
Comparing version 1.0.7 to 1.0.8
105
package.json
{ | ||
"name": "react-virtualized-auto-sizer", | ||
"version": "1.0.7", | ||
"description": | ||
"Standalone version of the AutoSizer component from react-virtualized", | ||
"author": | ||
"Brian Vaughn <brian.david.vaughn@gmail.com> (https://github.com/bvaughn/)", | ||
"version": "1.0.8", | ||
"description": "Standalone version of the AutoSizer component from react-virtualized", | ||
"author": "Brian Vaughn <brian.david.vaughn@gmail.com> (https://github.com/bvaughn/)", | ||
"contributors": [ | ||
@@ -12,3 +10,2 @@ "Brian Vaughn <brian.david.vaughn@gmail.com> (https://github.com/bvaughn/)" | ||
"license": "MIT", | ||
"homepage": "https://github.com/bvaughn/react-virtualized-auto-sizer/", | ||
"repository": { | ||
@@ -18,8 +15,2 @@ "type": "git", | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/bvaughn/react-virtualized-auto-sizer/issues" | ||
}, | ||
"engines": { | ||
"node": ">8.0.0" | ||
}, | ||
"keywords": [ | ||
@@ -39,63 +30,49 @@ "react", | ||
], | ||
"main": "dist/index.cjs.js", | ||
"module": "dist/index.esm.js", | ||
"files": ["dist/*"], | ||
"source": "src/index.ts", | ||
"main": "dist/react-virtualized-auto-sizer.js", | ||
"module": "dist/react-virtualized-auto-sizer.module.js", | ||
"types": "dist/react-virtualized-auto-sizer.d.ts", | ||
"files": [ | ||
"dist" | ||
], | ||
"scripts": { | ||
"precommit": "lint-staged", | ||
"prettier": "prettier --write '**/*.{js,json,css}'", | ||
"linc": "lint-staged", | ||
"lint": "eslint '**/*.js'", | ||
"test": "cross-env CI=1 react-scripts test --env=jsdom", | ||
"test:watch": "react-scripts test --env=jsdom", | ||
"build": "del dist && rollup -c", | ||
"start": "rollup -c -w", | ||
"prepare": "yarn run build", | ||
"predeploy": "cd example && yarn install && yarn run build", | ||
"deploy": "gh-pages -d example/build" | ||
"clear": "npm run clear:parcel-cache & npm run clear:builds & npm run clear:node_modules", | ||
"clear:builds": "rm -rf ./packages/*/dist", | ||
"clear:parcel-cache": "rm -rf ./.parcel-cache", | ||
"clear:node_modules": "rm -rf ./node_modules", | ||
"prerelease": "rm -rf ./.parcel-cache && parcel build", | ||
"prettier": "prettier --write \"**/*.{css,html,js,json,jsx,ts,tsx}\"", | ||
"prettier:ci": "prettier --check \"**/*.{css,html,js,json,jsx,ts,tsx}\"", | ||
"test": "jest", | ||
"test:watch": "jest --watch", | ||
"typescript": "tsc --noEmit", | ||
"typescript:watch": "tsc --noEmit --watch" | ||
}, | ||
"lint-staged": { | ||
"{example,src}/**/*.{js,json,css}": ["prettier --write", "git add"], | ||
"{example,src}/**/*.{js,json,css}": [ | ||
"prettier --write", | ||
"git add" | ||
], | ||
"**/*.js": "eslint --max-warnings 0" | ||
}, | ||
"devDependencies": { | ||
"@parcel/core": "^2.8.3", | ||
"@parcel/packager-ts": "^2.8.3", | ||
"@parcel/transformer-typescript-types": "^2.8.3", | ||
"@types/jest": "^26.0.15", | ||
"@types/react": "^18", | ||
"@types/react-dom": "^18", | ||
"jest": "^29.4.3", | ||
"jest-environment-jsdom": "^29.4.3", | ||
"parcel": "^2.8.3", | ||
"prettier": "^2.8.6", | ||
"react": "^18", | ||
"react-dom": "^18", | ||
"ts-jest": "^29.0.5", | ||
"typescript": "^4.1.2" | ||
}, | ||
"peerDependencies": { | ||
"react": "^15.3.0 || ^16.0.0-alpha || ^17.0.0 || ^18.0.0-rc", | ||
"react-dom": "^15.3.0 || ^16.0.0-alpha || ^17.0.0 || ^18.0.0-rc" | ||
}, | ||
"devDependencies": { | ||
"babel-core": "^6.26.0", | ||
"babel-eslint": "^8.2.1", | ||
"babel-plugin-external-helpers": "^6.22.0", | ||
"babel-preset-env": "^1.6.0", | ||
"babel-preset-react": "^6.24.1", | ||
"babel-preset-stage-0": "^6.24.1", | ||
"cross-env": "^5.1.4", | ||
"del-cli": "^1.1.0", | ||
"eslint": "^4.19.1", | ||
"eslint-config-prettier": "^2.9.0", | ||
"eslint-config-react-app": "^2.1.0", | ||
"eslint-config-standard": "^11.0.0", | ||
"eslint-config-standard-react": "^6.0.0", | ||
"eslint-plugin-flowtype": "^2.47.1", | ||
"eslint-plugin-import": "^2.11.0", | ||
"eslint-plugin-jsx-a11y": "^5", | ||
"eslint-plugin-node": "^6.0.1", | ||
"eslint-plugin-prettier": "^2.6.0", | ||
"eslint-plugin-promise": "^3.7.0", | ||
"eslint-plugin-react": "^7.7.0", | ||
"eslint-plugin-standard": "^3.0.1", | ||
"gh-pages": "^1.1.0", | ||
"lint-staged": "^7.0.5", | ||
"prettier": "^1.12.1", | ||
"react": "15", | ||
"react-dom": "15", | ||
"react-scripts": "^1.1.1", | ||
"react-test-renderer": "^16.4.0", | ||
"rollup": "^0.59.3", | ||
"rollup-plugin-babel": "^3.0.3", | ||
"rollup-plugin-commonjs": "^8.2.1", | ||
"rollup-plugin-node-resolve": "^3.0.2", | ||
"rollup-plugin-peer-deps-external": "^2.0.0", | ||
"rollup-plugin-postcss": "^1.1.0", | ||
"rollup-plugin-url": "^1.3.0" | ||
} | ||
} |
@@ -7,2 +7,4 @@ # react-virtualized-auto-sizer | ||
### If you like this project, [buy me a coffee](http://givebrian.coffee/). | ||
## Install | ||
@@ -9,0 +11,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No bug tracker
MaintenancePackage does not have a linked bug tracker in package.json.
Found 1 instance in 1 package
No website
QualityPackage does not have a website.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
120284
14
12
1483
22
1
1