UNPKG

react-provider-wrapper

Version:

Wrap React application with multiple wrappers. Avoiding wrapper hell created by multiple providers.

54 lines (53 loc) 1.49 kB
{ "name": "react-provider-wrapper", "version": "1.0.1", "description": "Wrap React application with multiple wrappers. Avoiding wrapper hell created by multiple providers.", "main": "lib/index.js", "types": "lib/index.d.ts", "scripts": { "test": "jest --config jestconfig.json", "build": "tsc", "format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"", "lint": "tslint -p tsconfig.json", "prepare": "npm run build", "prepublishOnly": "npm run lint", "preversion": "npm run lint", "version": "npm run format && git add -A src", "postversion": "git push && git push --tags" }, "repository": { "type": "git", "url": "git+https://github.com/scottjr632/react-provider-wrapper.git" }, "keywords": [ "ReactJS", "React", "Providers", "Context", "Wrapper" ], "author": "Scott Richardson <scott@scottrichardson.dev>", "license": "MIT", "bugs": { "url": "https://github.com/scottjr632/react-provider-wrapper/issues" }, "homepage": "https://github.com/scottjr632/react-provider-wrapper#readme", "devDependencies": { "@types/jest": "^25.1.3", "@types/react": "^16.9.23", "@types/react-dom": "^16.9.5", "jest": "^25.1.0", "prettier": "^1.19.1", "react-dom": "^16.13.0", "ts-jest": "^25.2.1", "tslint": "^6.0.0", "tslint-config-prettier": "^1.18.0", "typescript": "^3.8.3" }, "files": [ "lib/**/*" ], "dependencies": { "react": "^16.13.0" } }