-
Notifications
You must be signed in to change notification settings - Fork 73
/
package.json
90 lines (90 loc) · 2.38 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "ionic-appauth",
"version": "2.1.0",
"description": "Integration for OpenId/AppAuth-JS into Ionic",
"main": "lib/index.js",
"scripts": {
"test": "mocha --config test/runners/mocha/.mocharc.jsonc",
"test:coverage": "nyc npm run test",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\" \"lib/**/*.*\"",
"lint": "eslint . --ext .ts",
"prepare": "husky install",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "[email protected]:wi3land/ionic-appauth.git"
},
"homepage": "https://github.com/wi3land/ionic-appauth#readme",
"keywords": [
"OAuth",
"OIDC",
"AppAuth",
"JavaScript",
"TypeScript",
"Ionic",
"Capacitor",
"Cordova",
"OpenID Connect",
"Angular",
"React",
"Vue"
],
"author": {
"name": "wi3land"
},
"bugs": {
"url": "https://github.com/wi3land/ionic-appauth/issues"
},
"license": "MIT",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.9",
"@types/mocha": "^10.0.3",
"@types/node": "^20.8.7",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"chai": "^4.3.10",
"chai-as-promised": "^7.1.1",
"eslint": "^8.51.0",
"husky": "^9.0.11",
"mocha": "^10.2.0",
"mock-browser": "^0.92.14",
"mock-local-storage": "^1.1.24",
"nyc": "^17.0.0",
"prettier": "^3.0.3",
"rxjs": "^7.8.1",
"sinon": "^18.0.0",
"ts-mock-imports": "^1.3.8",
"ts-mockito": "^2.6.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"files": [
"lib/**/*"
],
"types": "lib/index.d.ts",
"dependencies": {
"@openid/appauth": "^1.3.1",
"@types/chai-as-promised": "^7.1.7",
"tslib": "^2.6.2",
"uuid": "^10.0.0"
},
"peerDependencies": {
"rxjs": "^6.5.5 || ^7.4.0"
},
"optionalDependencies": {
"@awesome-cordova-plugins/core": "^6.3.0",
"@awesome-cordova-plugins/http": "^6.3.0",
"@awesome-cordova-plugins/in-app-browser": "^6.3.0",
"@awesome-cordova-plugins/safari-view-controller": "^6.3.0",
"@awesome-cordova-plugins/secure-storage": "^6.3.0",
"@capacitor/browser": "^6.0.0",
"@capacitor/core": "^6.0.0",
"@capacitor/preferences": "^6.0.0",
"@ionic/storage": "^4.0.0",
"capacitor-secure-storage-plugin": "^0.10.0"
}
}