forked from capacitor-community/generic-oauth2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.67 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
{
"name": "@byteowls/capacitor-oauth2",
"version": "2.1.0",
"description": "Simple Capacitor OAuth 2 client plugin",
"author": "Michael Oberwasserlechner",
"homepage": "https://github.com/moberwasserlechner/capacitor-oauth2",
"license": "MIT",
"main": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"scripts": {
"build": "npm run clean && tsc",
"clean": "rm -rf ./dist",
"watch": "tsc --watch",
"test": "jest",
"removePacked": "rm -f byteowls-capacitor-oauth2-*.tgz",
"publishLocally": "npm run removePacked && npm run build && npm pack",
"prepublishOnly": "npm run build"
},
"files": [
"dist/",
"ios/",
"android/",
"ByteowlsCapacitorOauth2.podspec"
],
"keywords": [
"capacitor",
"capacitor-plugin",
"oauth2",
"oauth2-client",
"social-login"
],
"capacitor": {
"ios": {
"src": "ios"
},
"android": {
"src": "android"
}
},
"repository": {
"type": "git",
"url": "https://github.com/moberwasserlechner/capacitor-oauth2"
},
"bugs": {
"url": "https://github.com/moberwasserlechner/capacitor-oauth2/issues"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"@capacitor/core": "^2.0.0"
},
"dependencies": {},
"devDependencies": {
"@capacitor/android": "2.3.0",
"@capacitor/core": "2.3.0",
"@capacitor/ios": "2.3.0",
"@types/jest": "26.0.7",
"jest": "26.1.0",
"ts-jest": "26.1.3",
"typescript": "3.8.3"
}
}