UNPKG

react-gapi-auth2

Version:

React bindings for gapi.auth2 (Google's OAuth 2.0 JavaScript client)

72 lines (71 loc) 2.08 kB
{ "name": "react-gapi-auth2", "version": "1.0.4", "private": false, "description": "React bindings for gapi.auth2 (Google's OAuth 2.0 JavaScript client)", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "build": "tsc", "deploy:patch": "npm run build && npm version patch && npm publish --access public", "deploy:minor": "npm run build && npm version minor && npm publish --access public", "deploy:major": "npm run build && npm version major && npm publish --access public", "test": "jest", "prepare": "husky install", "docs": "typedoc --out docs src/index.ts" }, "repository": { "type": "git", "url": "git+https://github.com/narinluangrath/react-gapi-auth2.git" }, "keywords": [ "React", "Google", "OAuth", "OAuth2.0", "TypeScript", "JavaScript" ], "author": "Narin Luangrath <narin.luangrath@gmail.com>", "license": "ISC", "bugs": { "url": "https://github.com/narinluangrath/react-gapi-auth2/issues" }, "homepage": "https://github.com/narinluangrath/react-gapi-auth2#readme", "dependencies": { "@types/gapi": "0.0.39", "@types/gapi.auth2": "0.0.54" }, "devDependencies": { "@types/jest": "^26.0.22", "@types/react": "^17.0.3", "@typescript-eslint/eslint-plugin": "^4.21.0", "@typescript-eslint/parser": "^4.21.0", "eslint": "^7.24.0", "eslint-config-prettier": "^8.1.0", "eslint-config-standard": "^16.0.2", "eslint-plugin-import": "^2.22.1", "eslint-plugin-node": "^11.1.0", "eslint-plugin-promise": "^4.3.1", "eslint-plugin-react": "^7.23.2", "husky": "^6.0.0", "jest": "^26.6.3", "lint-staged": "^10.5.4", "prettier": "2.2.1", "react": "^17.0.2", "react-dom": "^17.0.2", "typedoc": "^0.20.35", "typescript": "^4.2.4" }, "peerDependencies": { "react": ">=16.8.0", "react-dom": ">=16.8.0" }, "lint-staged": { "src/**/*.{js,jsx,ts,tsx}": [ "eslint --fix", "prettier --write" ], "src/**/*.{scss,css,md}": "prettier --write" } }