UNPKG

react-popup-manager

Version:

Manage react popups, Modals, Lightboxes, Notifications, etc. easily

83 lines (82 loc) 1.94 kB
{ "name": "react-popup-manager", "version": "2.2.1", "description": "Manage react popups, Modals, Lightboxes, Notifications, etc. easily", "license": "MIT", "main": "dist/src/index.js", "private": false, "publishConfig": { "versionBumpStrategy": "patch", "registry": "https://registry.npmjs.org/" }, "author": { "name": "Guy Wargzaer", "email": "guyw@wix.com" }, "files": [ "dist/src" ], "scripts": { "start": "yoshi start", "precommit": "lint-staged", "lint:fix": "yoshi lint --fix", "build": "yoshi build", "pretest": "yarn run build", "test": "yoshi test --jest", "test:watch": "yoshi test --jest --watch", "posttest": "yoshi lint" }, "repository": "https://github.com/wix-incubator/react-popup-manager.git", "homepage": "https://github.com/wix-incubator/react-popup-manager#readme", "bugs": { "url": "https://github.com/wix-incubator/react-popup-manager/issues" }, "keywords": [ "react", "provider", "context", "manager", "popup", "modal", "lightbox", "notification" ], "devDependencies": { "@types/enzyme": "^3.9.0", "@types/jest": "~23.3.1", "@types/react": "^16.8.5", "@types/react-dom": "^16.8.2", "enzyme": "^3.9.0", "enzyme-adapter-react-16": "^1.11.2", "jest-yoshi-preset": "^4.87.0", "lint-staged": "^7.2.2", "puppeteer": "^1.1.0", "react": "^16.8.3", "react-dom": "^16.8.3", "react-test-renderer": "^16.8.3", "typescript": "~4.3.0", "yoshi": "^4.87.0" }, "peerDependencies": { "react": ">=16.0.0", "react-dom": ">=16.0.0" }, "lint-staged": { "linters": { "*.{js,ts,tsx,scss,less}": "yoshi lint" }, "ignore": [ "**/*.d.ts" ] }, "jest": { "preset": "jest-yoshi-preset" }, "yoshi": { "externals": { "react": "React", "react-dom": "ReactDOM" }, "hmr": "auto" } }