forked from wi3land/ionic-appauth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.33 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
{
"name": "ionic-appauth",
"version": "0.3.6",
"description": "Intergration for OpenId/AppAuth-JS into Ionic V3/4",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json"
},
"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"
],
"author": {
"name": "wi3land"
},
"bugs": {
"url": "https://github.com/wi3land/ionic-appauth/issues"
},
"license": "MIT",
"devDependencies": {
"tslint": "^5.14.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.3.4000",
"rxjs": "^6.3.0"
},
"files": [
"lib/**/*"
],
"types": "lib/index.d.ts",
"dependencies": {
"@openid/appauth": "^1.2.2"
},
"peerDependencies": {
"rxjs": "^6.3.0"
},
"optionalDependencies": {
"@capacitor/core": "^1.0.0-beta.19",
"@ionic-native/core": "^5.3.0",
"@ionic-native/http": "^5.3.0",
"@ionic-native/in-app-browser": "^5.3.0",
"@ionic-native/safari-view-controller": "^5.3.0",
"@ionic-native/secure-storage": "^5.3.0"
}
}