-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
73 lines (73 loc) · 2.06 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
73
{
"name": "electron-oauth-helper",
"version": "5.1.1",
"description": "Easy to use helper library for OAuth1 and OAuth2.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"rebuild": "electron-rebuild -m node_modules/grpc",
"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 && npm run build",
"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"
},
"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": {
"@jest-runner/electron": "2.0.3",
"@types/debug": "4.1.5",
"@types/jest": "24.9.1",
"@types/koa": "2.11.0",
"@types/koa-bodyparser": "4.3.0",
"@types/koa-router": "7.4.0",
"@types/node": "13.5.0",
"@typescript-eslint/eslint-plugin": "2.17.0",
"@typescript-eslint/parser": "2.17.0",
"electron": "7.1.10",
"electron-rebuild": "1.9.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.9.0",
"eslint-plugin-jest": "23.6.0",
"eslint-plugin-node": "11.0.0",
"eslint-plugin-prettier": "3.1.2",
"firebase": "7.7.0",
"jest": "25.1.0",
"koa": "2.11.0",
"koa-bodyparser": "4.2.1",
"koa-router": "8.0.6",
"prettier": "1.19.1",
"ts-jest": "25.0.0",
"typedoc": "0.16.8",
"typescript": "3.7.5"
},
"dependencies": {
"debug": "4.1.1"
}
}