forked from mawie81/electron-oauth2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 990 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "electron-oauth2",
"version": "2.4.1",
"description": "An OAuth2 module for your Electron app.",
"license": "MIT",
"repository": "mawie81/electron-oauth2",
"author": {
"name": "Marcel Wiehle",
"email": "[email protected]",
"url": "marcel.wiehle.me"
},
"files": [
"index.js"
],
"scripts": {
"test": "xo"
},
"keywords": [
"electron",
"oauth2",
"authentication",
"access token"
],
"devDependencies": {
"ava": "^0.8.0",
"electron": "^1.4.1",
"mocha": "^2.5.3",
"xo": "^0.12.1"
},
"dependencies": {
"node-fetch": "^1.3.3",
"object-assign": "^4.0.1",
"pinkie-promise": "^2.0.0"
},
"engines": {
"node": ">= 4.0"
},
"xo": {
"space": true,
"globals": [
"describe",
"it",
"xdescribe"
],
"rules": {
"brace-style": [
2,
"1tbs",
{
"allowSingleLine": true
}
],
"camelcase": 0
}
}
}