forked from mironal/electron-oauth-helper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.96 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
72
{
"name": "electron-oauth-helper",
"version": "2.0.3",
"description": "Easy to use helper library for OAuth1 and OAuth2.",
"main": "index.js",
"scripts": {
"start:example": "electron ./example/src/main/main.js",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "avaron --timeout=10s",
"build": "parcel build --no-minify index.js",
"doc": "esdoc",
"preversion": "npm run lint && npm run test",
"version": "npm run doc && git add -A",
"postversion": "git push && git push --tags"
},
"engines": {
"node": ">= 8.0.0"
},
"keywords": [
"oauth",
"oauth1",
"oauth2",
"electron",
"auth",
"api"
],
"author": "mironal",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mironal/electron-oauth-helper.git"
},
"homepage": "https://github.com/mironal/electron-oauth-helper",
"bugs": {
"url": "https://github.com/mironal/electron-oauth-helper/issues"
},
"devDependencies": {
"ava": "0.25.0",
"avaron": "0.0.14",
"electron": "1.8.6",
"esdoc": "1.0.4",
"esdoc-standard-plugin": "1.0.0",
"eslint": "4.19.1",
"eslint-plugin-ava": "4.5.1",
"eslint-plugin-import": "2.12.0",
"eslint-plugin-node": "6.0.1",
"eslint-plugin-promise": "3.7.0",
"eslint-plugin-security": "1.4.0",
"firebase": "5.0.2",
"koa": "2.5.0",
"koa-bodyparser": "4.2.0",
"koa-router": "7.4.0"
},
"dependencies": {
"debug": "3.1.0"
},
"esdoc": {
"source": "./lib",
"destination": "./docs",
"plugins": [
{
"name": "esdoc-standard-plugin",
"option": {
"lint": {
"enable": false
}
}
}
]
}
}