-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.03 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"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 <[email protected]>",
"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"
}
}