{ "name": "@restart/context", "version": "2.1.4", "main": "index.js", "module": "es/index.js", "types": "index.d.ts", "repository": { "type": "git", "url": "https://github.com/react-restart/context" }, "author": "4Catalyzer", "license": "MIT", "publishConfig": { "access": "public" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "*.js": [ "eslint --fix", "git add" ], "*.{json,css,md}": [ "prettier --write --ignore-path .eslintignore", "git add" ] }, "prettier": { "printWidth": 79, "singleQuote": true, "trailingComma": "all" }, "jest": { "roots": [ "/test" ], "setupFiles": [ "/test/index.js" ] }, "release": { "extends": [ "@4c/semantic-release-config" ], "pkgRoot": "lib" }, "peerDependencies": { "react": ">=16.3.2" } }