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