-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 2.75 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "oidc-connector",
"version": "1.4.5-0",
"description": "oidc client connector",
"keywords": [
"keycloak",
"oidc",
"oidc-client",
"openid-connector",
"oidc-connector"
],
"homepage": "https://github.com/spurreiter/oidc-connector",
"repository": {
"type": "git",
"url": "https://github.com/spurreiter/oidc-connector.git"
},
"license": "Apache-2.0",
"author": "spurreiter",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"import": "./esm/index.js",
"require": "./dist/index.cjs"
},
"./adapter/cordova": {
"import": "./esm/adapter/cordova.js",
"require": "./dist/adapter/cordova.cjs"
},
"./adapter/cordova-native": {
"import": "./esm/adapter/cordova-native.js",
"require": "./dist/adapter/cordova-native.cjs"
},
"./package.json": "./package.json"
},
"main": "src/index.js",
"types": "types",
"directories": {
"example": "example",
"test": "test"
},
"files": [
"src",
"dist",
"esm",
"types"
],
"scripts": {
"all": "npm-run-all coverage lint ts:types build",
"build": "npm run clean && rollup -c",
"clean": "rm -rf esm/ dist/ coverage/",
"coverage": "c8 --clean -r text -r html -r lcov npm t",
"dev": "cd example && MODE=dev node server.js",
"dev:server": "nodemon test/support/server.js",
"example": "cd example && vite build && node server.js",
"lint": "eslint",
"prepublishOnly": "npm run all",
"test": "mocha",
"ts:types": "rimraf types; tsc && cp src/*.d.ts types"
},
"mocha": {
"exit": true
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-transform-react-jsx": "^7.25.9",
"@babel/plugin-transform-react-jsx-development": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@eslint/js": "^9.14.0",
"@preact/preset-vite": "^2.9.1",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-terser": "^0.4.4",
"@types/estree": "^1.0.6",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-hook-names": "^1.0.2",
"c8": "^10.1.2",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"debug": "^4.3.7",
"eslint": "^9.14.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-react": "^7.37.2",
"express": "^4.21.1",
"globals": "^15.12.0",
"jsdom": "^25.0.1",
"mocha": "^10.8.2",
"node-fetch": "^3.3.2",
"npm-run-all": "^4.1.5",
"preact": "^10.24.3",
"regenerator-runtime": "^0.14.1",
"rimraf": "^6.0.1",
"rollup": "^4.24.4",
"sinon": "^19.0.2",
"superagent": "^10.1.1",
"supertest": "^7.0.0",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"whatwg-fetch": "^3.6.20"
},
"publishConfig": {},
"engines": {
"node": ">= 18"
}
}