reblend-ui
Version:
Utilities for creating robust overlay components
94 lines (93 loc) • 2.47 kB
JSON
{
"name": "reblend-ui",
"version": "3.0.2",
"description": "Utilities for creating robust overlay components",
"author": {
"name": "Emmanuel Paul Elom",
"email": "scansioquielom@gmail.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/react-restart/ui.git"
},
"license": "MIT",
"main": "./cjs/index.js",
"module": "./esm/index.js",
"types": "./cjs/index.d.ts",
"exports": {
".": {
"import": "./esm/index.js",
"require": "./cjs/index.js",
"types": "./cjs/index.d.ts"
},
"./*": {
"types": "./cjs/*.d.ts",
"import": "./esm/*.js",
"require": "./cjs/*.js"
},
"./esm/*": "./esm/*",
"./cjs/*": "./cjs/*"
},
"sideEffects": false,
"files": [
"cjs",
"esm",
"src",
"CHANGELOG.md",
"LICENSE",
"HISTORY.md",
"README.md"
],
"keywords": [
"react-overlays",
"react-component",
"react",
"overlay",
"react-component",
"tooltip",
"bootstrap",
"popover",
"modal"
],
"scripts": {
"bootstrap": "yarn --network-timeout 100000 && yarn --cwd www --network-timeout 100000",
"tdd": "jest",
"build": "rimraf esm cjs types cjs-test && npm run build:types && concurrently 'npm run build:esm' 'npm run build:cjs'",
"build:esm": "babel src --out-dir esm --extensions '.tsx,.ts,.js' --no-babelrc --presets=reblend",
"build:cjs": "babel src --out-dir cjs --extensions '.tsx,.ts,.js' && npm run build:popper",
"build:types": "npm run esm:types && npm run cjs:types",
"esm:types": "tsc -p tsconfig.esm.types.json",
"cjs:types": "tsc -p tsconfig.cjs.types.json",
"build:test": "babel test --out-dir cjs-test --extensions '.tsx,.ts,.js'",
"build:popper": "rollup -c",
"deploy-docs": "yarn --cwd www deploy",
"lint": "eslint src test",
"release": "rollout",
"start": "yarn --cwd www start",
"test": "yarn lint && yarn tdd"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"release": {
"conventionalCommits": true
},
"dependencies": {
"@popperjs/core": "^2.11.8",
"@types/warning": "^3.0.3",
"dom-helpers": "^5.2.0",
"reblend-hooks": "1.0.1",
"uncontrollable": "^9.0.0",
"warning": "^4.0.3"
},
"peerDependencies": {
"reblendjs": "latest"
},
"devDependencies": {
"react-transition-group": "^4.4.5"
},
"bugs": {
"url": "https://github.com/react-restart/ui/issues"
}
}