forked from mironal/electron-oauth-helper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.86 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
{
"name": "@my0419/electron-oauth-helper",
"version": "6.0.0",
"description": "Easy to use helper library for OAuth1 and OAuth2.",
"scripts": {
"start:example": "electron ./example/src/main/main.js",
"lint": "eslint lib/**/*",
"lint:fix": "eslint --fix lib/**/*",
"test": "jest lib/**/*.ts",
"doc": "typedoc --out docs lib",
"build": "tsc",
"rebuild:modules": "electron-rebuild",
"preversion": "npm run lint && npm run test",
"version": "npm run doc && git add -A",
"postversion": "git push && git push --tags",
"_fmt": "prettier --config .prettierrc '{*,src/**/*}.{js,jsx,css,ts,tsx,json}'",
"fmt": "npm run _fmt -- --write"
},
"files": [
"lib/",
"LICENSE"
],
"engines": {
"node": ">= 8.0.0"
},
"keywords": [
"oauth",
"oauth1",
"oauth2",
"electron",
"auth",
"api"
],
"author": "mironal",
"license": "MIT",
"repository": {
"url": "[email protected]:my0419/electron-oauth-helper.git"
},
"homepage": "https://github.com/my0419/electron-oauth-helper",
"devDependencies": {
"@jest-runner/electron": "1.1.1",
"@types/debug": "4.1.4",
"@types/jest": "24.0.12",
"@types/koa": "2.0.48",
"@types/koa-bodyparser": "4.2.2",
"@types/koa-router": "7.0.40",
"@types/node": "11.13.9",
"@typescript-eslint/eslint-plugin": "1.7.0",
"axios": "^0.18.0",
"electron": "4.2.0",
"electron-rebuild": "1.8.4",
"eslint": "5.16.0",
"eslint-config-prettier": "4.2.0",
"eslint-plugin-jest": "22.5.1",
"eslint-plugin-node": "8.0.1",
"eslint-plugin-prettier": "3.0.1",
"firebase": "5.11.1",
"jest": "24.7.1",
"koa": "2.7.0",
"koa-bodyparser": "4.2.1",
"koa-router": "7.4.0",
"prettier": "^1.15.3",
"ts-jest": "24.0.2",
"typedoc": "0.14.2",
"typescript": "3.4.5"
},
"dependencies": {
"debug": "4.1.1"
}
}