forked from getstation/electron-google-oauth2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (38 loc) · 926 Bytes
/
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
{
"name": "@jaga3421/electron-google-oauth2",
"version": "1.0.1",
"description": "A Google OAuth2 module for your Electron app.",
"license": "MIT",
"repository": "jaga3421/electron-google-oauth2",
"main": "./lib/index",
"types": "./lib/index",
"author": {
"name": "Jaga",
"email": "[email protected]"
},
"scripts": {
"build": "node -v",
"prepublishOnly": "yarn run build"
},
"keywords": [
"electron",
"oauth2",
"authentication",
"access token"
],
"devDependencies": {
"electron": "^7.1.11",
"typescript": "^3.7.5"
},
"dependencies": {
"google-auth-library": "^5.9.2"
},
"engines": {
"node": ">= 8.0"
},
"bugs": {
"url": "https://github.com/jaga3421/electron-google-oauth2/issues"
},
"publishConfig": { "registry": "https://npm.pkg.github.com/" },
"homepage": "https://github.com/jaga3421/electron-google-oauth2#readme"
}