forked from wi3land/ionic-appauth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.62 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
{
"name": "ionic-appauth",
"version": "0.8.6",
"description": "Intergration for OpenId/AppAuth-JS into Ionic V3/4/5",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "eslint . --ext .ts"
},
"repository": {
"type": "git",
"url": "[email protected]:wi3land/ionic-appauth.git"
},
"homepage": "https://github.com/wi3land/ionic-appauth#readme",
"keywords": [
"OAuth",
"AppAuth",
"JavaScript",
"Ionic",
"Cordova",
"OpenId",
"Angular",
"React",
"Vue"
],
"author": {
"name": "wi3land"
},
"bugs": {
"url": "https://github.com/wi3land/ionic-appauth/issues"
},
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"eslint": "^7.31.0",
"rxjs": "^6.6.7",
"typescript": "^4.3.5"
},
"files": [
"lib/**/*"
],
"types": "lib/index.d.ts",
"dependencies": {
"@openid/appauth": "^1.3.1",
"guid-typescript": "^1.0.9",
"tslib": "^1.9.3"
},
"peerDependencies": {
"rxjs": "^6.6.7"
},
"optionalDependencies": {
"@capacitor/browser": "^1.0.2",
"@capacitor/core": "^3.1.2",
"@capacitor/storage": "^1.0.3",
"@ionic-native/core": "^5.34.0",
"@ionic-native/http": "^5.34.0",
"@ionic-native/in-app-browser": "^5.34.0",
"@ionic-native/safari-view-controller": "^5.34.0",
"@ionic-native/secure-storage": "^5.34.0",
"@ionic/storage": "^3.0.6",
"capacitor-secure-storage-plugin": "^0.6.2"
}
}