UNPKG

react-show-more-list

Version:

A unopinionated component to handle showing more results

94 lines (93 loc) 2.35 kB
{ "name": "react-show-more-list", "version": "0.5.2", "description": "A unopinionated component to handle showing more results", "publishConfig": { "access": "public" }, "main": "dist/react-show-more-list.js", "module": "dist/react-show-more-list.es.js", "browser": "dist/react-show-more-list.min.js", "scripts": { "build": "bili --js babel --format cjs,es,umd,umd-min --external react", "prebuild": "yarn test:fast", "prepush": "yarn test:fast", "prepublish": "yarn build", "test": "yarn test:fast --ci --colors --silent --testResultsProcessor=\"jest-junit\" --coverage", "test:fast": "jest --colors", "test:watch": "jest --watch", "cz": "git-cz" }, "repository": { "type": "git", "url": "git+ssh://git@github.com/tedconf/react-show-more.git" }, "files": [ "dist" ], "keywords": [ "react", "render-prop", "pagination", "show", "more" ], "author": "Vince Speelman", "license": "ISC", "bugs": { "url": "https://github.com/tedconf/react-show-more/issues" }, "homepage": "https://github.com/tedconf/react-show-more#readme", "peerDependencies": { "react": ">=15" }, "devDependencies": { "@types/react": "16.0.36", "babel-jest": "22.1.0", "babel-plugin-external-helpers": "6.22.0", "babel-preset-env": "1.6.1", "babel-preset-es2015": "6.24.1", "babel-preset-react": "6.24.1", "babel-preset-stage-0": "6.24.1", "bili": "2.2.6", "commitizen": "2.9.6", "cz-emoji": "1.1.0", "enzyme": "3.3.0", "enzyme-adapter-react-16": "1.1.1", "enzyme-to-json": "3.3.1", "jest": "22.1.4", "jest-junit": "3.5.0", "microbundle": "0.4.3", "raf": "3.4.0", "react": "16.2.0", "react-dom": "16.2.0", "rollup-plugin-typescript2": "0.11.0" }, "jest": { "moduleFileExtensions": [ "js", "json" ], "setupFiles": [ "./test-setup.js" ], "collectCoverageFrom": [ "src/**/*.js" ], "testResultsProcessor": "./node_modules/jest-junit", "snapshotSerializers": [ "enzyme-to-json/serializer" ], "moduleDirectories": [ "node_modules", "src" ], "roots": [ "<rootDir>/src" ] }, "jest-junit": { "output": "./spec/reports/test-results.xml", "ancestorSeparator": " › " } }