UNPKG

parvus-ui

Version:

A micro UI kit with all the main UI components in less than 5KB

120 lines (119 loc) 3.98 kB
{ "name": "parvus-ui", "version": "2.0.3", "description": "A micro UI kit with all the main UI components in less than 5KB", "repository": "github:rnglnd/parvus-ui", "author": "Steven Ringland <steven.ringland@gmail.com>", "license": "MIT", "keywords": ["react", "preact", "component", "library", "ui", "ux", "design"], "bundlesize": [ { "path": "./lib/index.js", "maxSize": "5 kB" }, { "path": "./es/index.js", "maxSize": "5 kB" } ], "main": "lib/index.js", "module": "es/index.js", "browser": "lib/index.umd.js", "jsnext:main": "es/index.js", "unpkg": "dist/parvus-ui.min.js", "scripts": { "clean": "rimraf lib es", "bundlesize": "bundlesize", "flow": "flow", "start": "webpack-dev-server --mode development", "test": "NODE_ENV=testing jest", "build": "rollup -c", "precommit": "npm test && lint-staged", "flowinstall": "flow-typed install && flow-typed create-stub cxs@x && flow-typed create-stub create-react-context@x", "require-npm4-to-publish": "semver -r '>=4.0.0' $(npm --version) || (echo 'NPM 4+ required to publish' && exit 1)", "prepublish": "(not-in-publish && echo 'Skipping prepublish') || npm run require-npm4-to-publish", "prepublishOnly": "npm run clean && npm run build", "styleguide": "styleguidist server", "styleguide:build": "styleguidist build" }, "lint-staged": { "*.{js,jsx,json}": ["prettier-eslint --write", "git add"] }, "peerDependencies": { "prop-types": "15.x.x", "react": "^0.14.6 || 15.x.x || 16.x.x", "react-dom": "^0.14.6 || 15.x.x || 16.x.x" }, "dependencies": { "create-react-context": "^0.2.2", "cxs": "^6.2.0" }, "devDependencies": { "@babel/cli": "^7.0.0", "@babel/core": "^7.0.0", "@babel/plugin-proposal-class-properties": "^7.0.0", "@babel/plugin-proposal-decorators": "^7.0.0", "@babel/plugin-proposal-export-namespace-from": "^7.0.0", "@babel/plugin-proposal-function-sent": "^7.0.0", "@babel/plugin-proposal-json-strings": "^7.0.0", "@babel/plugin-proposal-numeric-separator": "^7.0.0", "@babel/plugin-proposal-throw-expressions": "^7.0.0", "@babel/plugin-syntax-dynamic-import": "^7.0.0", "@babel/plugin-syntax-import-meta": "^7.0.0", "@babel/plugin-transform-modules-commonjs": "^7.0.0", "@babel/preset-env": "^7.0.0", "@babel/preset-flow": "^7.0.0", "@babel/preset-react": "^7.0.0", "babel-core": "^7.0.0-bridge.0", "babel-eslint": "8.2.3", "babel-jest": "^23.4.2", "babel-loader": "^8.0.0", "babel-plugin-add-module-exports": "0.2.1", "babel-plugin-flow-react-proptypes": "^24.1.1", "bundlesize": "^0.17.0", "enzyme": "^3.5.0", "enzyme-adapter-react-16": "^1.3.1", "eslint": "4.19.1", "eslint-config-unobtrusive": "1.2.2", "eslint-loader": "2.0.0", "eslint-plugin-flowtype": "2.49.3", "eslint-plugin-import": "2.10.0", "eslint-plugin-react": "7.8.2", "flow-bin": "^0.77.0", "html-webpack-plugin": "^3.2.0", "husky": "0.14.3", "in-publish": "^2.0.0", "jest": "^23.5.0", "lint-staged": "^7.2.0", "path": "^0.12.7", "prettier": "1.12.1", "prettier-eslint": "8.8.1", "prettier-eslint-cli": "4.7.1", "prop-types": "^15.6.2", "react": "^16.4.1", "react-dom": "^16.4.1", "react-styleguidist": "^7.3.0", "rimraf": "^2.6.2", "rollup": "^0.66.2", "rollup-plugin-babel": "^4.0.3", "rollup-plugin-commonjs": "^9.1.8", "rollup-plugin-local-resolve": "^1.0.7", "rollup-plugin-node-resolve": "^3.4.0", "rollup-plugin-peer-deps-external": "^2.2.0", "semver": "^5.5.1", "webpack": "^4.16.0", "webpack-cli": "^3.0.8", "webpack-dev-server": "^3.1.4" }, "jest": { "transform": { "^.+\\.js$": "./node_modules/babel-jest" }, "testRegex": "(/__tests__/.*|(\\.|/))\\.js?$", "moduleFileExtensions": ["js", "json"] } }