UNPKG

react-lorem-ipsum

Version:

React Component and Function for Creating Lorem Ipsum Text as Placeholder

103 lines (102 loc) 3 kB
{ "name": "react-lorem-ipsum", "version": "1.4.10", "description": "React Component and Function for Creating Lorem Ipsum Text as Placeholder", "repository": { "type": "git", "url": "git+https://github.com/fatihtelis/react-lorem-ipsum.git" }, "homepage": "https://github.com/fatihtelis/react-lorem-ipsum#readme", "bugs": { "url": "https://github.com/fatihtelis/react-lorem-ipsum/issues" }, "keywords": [ "react", "reactjs", "typescript", "component", "lorem", "ipsum", "lorem ipsum", "lipsum", "placeholder", "gibberish", "text", "random", "name", "surname", "full name", "username" ], "author": "Fatih Telis <fatih.telis@gmail.com>", "license": "MIT", "main": "dist/index.js", "scripts": { "test": "jest --verbose", "start": "webpack-dev-server --mode development", "transpileJS": "babel src -d dist --no-comments --copy-files", "transpileSASS": "node-sass --output-style compressed src/style.scss > dist/style.css", "transpile": "npm run transpileJS && npm run transpileSASS", "format:check": "prettier --check .", "format:fix": "prettier --write .", "lint:check": "eslint .", "lint:fix": "eslint . --fix", "pre-push": "npm run format:check && npm run lint:check", "prepublishOnly": "npm run transpileJS", "build": "webpack --mode production", "deploy": "gh-pages -d examples/dist", "publish:gh-pages": "npm run build && npm run deploy", "publish:travis": "npm run build" }, "husky": { "hooks": { "pre-commit": "lint-staged", "pre-push": "npm run pre-push" } }, "lint-staged": { "**/*.js?(x)": "eslint --fix", "**/*": [ "prettier --write" ] }, "devDependencies": { "@babel/cli": "^7.17.0", "@babel/core": "^7.17.2", "@babel/preset-env": "^7.16.11", "@babel/preset-react": "^7.16.7", "babel-eslint": "^10.1.0", "babel-loader": "^8.2.3", "copy-webpack-plugin": "^10.2.4", "css-loader": "^6.6.0", "enzyme": "^3.11.0", "enzyme-adapter-react-16": "^1.15.6", "eslint": "^8.8.0", "eslint-config-airbnb": "^19.0.4", "eslint-config-prettier": "^8.3.0", "eslint-plugin-import": "^2.25.4", "eslint-plugin-jsx-a11y": "^6.5.1", "eslint-plugin-prettier": "^4.0.0", "eslint-plugin-react": "^7.28.0", "gh-pages": "^3.2.3", "html-webpack-plugin": "^5.5.0", "husky": "^7.0.4", "jest": "^27.5.1", "lint-staged": "^12.3.3", "node-sass": "^7.0.1", "prettier": "^2.5.1", "react": "^17.0.2", "react-dom": "^17.0.2", "sass-loader": "^12.4.0", "style-loader": "^3.3.1", "webpack": "^5.68.0", "webpack-cli": "^4.9.2", "webpack-dev-server": "^4.7.4" }, "jest": { "moduleNameMapper": { "\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js", "\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js" } } }