-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 1022 Bytes
/
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
{
"name": "keycloak-js",
"version": "999.0.0-SNAPSHOT",
"type": "module",
"description": "A client-side JavaScript OpenID Connect library that can be used to secure web applications.",
"scripts": {
"lint": "standard",
"guides": "node guides/guides.mjs $npm_package_version"
},
"exports": {
".": {
"types": "./lib/keycloak.d.ts",
"default": "./lib/keycloak.js"
},
"./authz": {
"types": "./lib/keycloak-authz.d.ts",
"default": "./lib/keycloak-authz.js"
}
},
"files": [
"lib"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/keycloak/keycloak.git"
},
"author": "Keycloak",
"license": "Apache-2.0",
"homepage": "https://www.keycloak.org",
"keywords": [
"keycloak",
"sso",
"oauth",
"oauth2",
"authentication"
],
"standard": {
"ignore": [
"lib/*"
]
},
"devDependencies": {
"jszip": "^3.10.1",
"standard": "^17.1.2"
}
}