-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.01 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
{
"name": "@muze-nl/metro-oidc",
"version": "0.1.0",
"description": "oidc client middleware for @muze-nl/metro",
"type": "module",
"source": [
"src/browser.mjs"
],
"main": "src/metro.oidc.mjs",
"targets": {
"default": {
"distDir": "./dist",
"optimize": true
},
"main": false
},
"directories": {
"test": "test"
},
"scripts": {
"test": "tap test/*.mjs",
"tap": "tap",
"build": "parcel build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/muze-nl/metro-oidc.git"
},
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/muze-nl/metro-oidc/issues"
},
"homepage": "https://github.com/muze-nl/metro-oidc/#readme",
"devDependencies": {
"eslint": "^8.13.0",
"tap": "^16.0.1"
},
"engines": {
"node": ">=20.0.0"
},
"files": [
"/src",
"/dist",
"/LICENSE",
"/README.md"
],
"dependencies": {
"@muze-nl/assert": "^0.3.0",
"@muze-nl/metro": "^0.4.1"
}
}