UNPKG

flex-wrap-layout

Version:
77 lines (76 loc) 2.96 kB
{ "name": "flex-wrap-layout", "version": "0.13.0", "description": "Experiments with flexbox layout", "repository": "github:tkrotoff/flex-wrap-layout", "license": "MIT", "keywords": [ "flexbox", "flex-wrap" ], "main": "dist/cjs/index.js", "module": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist/", "src/" ], "sideEffects": false, "scripts": { "clean": "rm -rf dist examples/build coverage", "clean:all": "npm run clean && rm -rf node_modules package-lock.json examples/node_modules examples/package-lock.json", "build": "npm run clean && npm run build:dts && npm run build:esm && npm run build:cjs", "build:dts": "tsc --project tsconfig.dist.json --declaration --emitDeclarationOnly --outDir dist", "build:esm": "tsc --project tsconfig.dist.json --removeComments --outDir dist", "build:cjs": "tsc --project tsconfig.dist.json --removeComments --module commonjs --outDir dist/cjs", "npm:install:examples": "cd examples && npm install", "build:examples": "cd examples && ./node_modules/.bin/webpack --mode=development", "test": "NODE_ENV=test jest --verbose", "test:coverage": "jest --coverage", "test:examples": "cd examples && npm run test:e2e", "tsc": "tsc", "format": "prettier --write '**/*'", "lint": "npm run tsc && eslint . '**/*.{js,ts,tsx}' && stylelint '**/*.scss'", "prepare": "husky install", "precommit": "lint-staged --verbose", "prepush": "npm run build:esm && npm run build:examples && npm run test && npm run test:examples", "prepublishOnly": "npm run clean && npm run build", "publish:beta": "npm version 0.10.0-beta.1 && npm publish --tag next --dry-run", "npm:update": "npm run clean:all && npx npm-check-updates --upgrade && npm install" }, "peerDependencies": { "react": ">=16.14" }, "devDependencies": { "@testing-library/react": "^14.0.0", "@types/jest": "^29.4.0", "@types/react-dom": "^18.0.11", "@typescript-eslint/eslint-plugin": "^5.54.1", "@typescript-eslint/parser": "^5.54.1", "eslint": "^8.36.0", "eslint-config-airbnb": "^19.0.4", "eslint-config-prettier": "^8.7.0", "eslint-plugin-import": "^2.27.5", "eslint-plugin-jest": "^27.2.1", "eslint-plugin-jsx-a11y": "^6.7.1", "eslint-plugin-playwright": "^0.12.0", "eslint-plugin-prettier": "^4.2.1", "eslint-plugin-react": "^7.32.2", "eslint-plugin-react-hooks": "^4.6.0", "eslint-plugin-simple-import-sort": "^10.0.0", "eslint-plugin-unicorn": "^46.0.0", "husky": "^8.0.3", "jest": "^29.5.0", "jest-environment-jsdom": "^29.5.0", "lint-staged": "^13.2.0", "prettier": "^2.8.4", "react": "^18.2.0", "react-dom": "^18.2.0", "stylelint": "^14.16.1", "stylelint-config-prettier": "^9.0.5", "stylelint-config-twbs-bootstrap": "^7.0.0", "stylelint-prettier": "^2.0.0", "ts-jest": "^29.0.5", "typescript": "^4.9.5" } }