-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
41 lines (41 loc) · 1010 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
40
41
{
"name": "electron-auth0-login",
"version": "2.0.5",
"description": "Provides Auth0 authentication services for your Electron.js application",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dist": "tsc"
},
"keywords": [
"Electron",
"Auth0"
],
"author": "Jimmy Breck-McKye",
"license": "MIT",
"homepage": "https://github.com/jbreckmckye/electron-auth0-login#readme",
"repository": {
"type": "git",
"url": "https://github.com/jbreckmckye/electron-auth0-login.git"
},
"bugs": {
"url": "https://github.com/jbreckmckye/electron-auth0-login/issues"
},
"devDependencies": {
"@types/keytar": "4.4.0",
"@types/node": "12.19.12",
"@types/qs": "6.5.1",
"@types/request": "2.47.1",
"@types/request-promise-native": "1.0.15",
"electron": "7.2.4",
"keytar": "4.4.2",
"typescript": "4.1.3"
},
"dependencies": {
"qs": "6.5.2",
"got": "11.8.1"
},
"peerDependencies": {
"electron": ">7.1.9"
}
}