-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 928 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
{
"name": "@muze-nl/metro",
"version": "0.4.3",
"description": "http client with middleware support",
"type": "module",
"source": [ "src/browser.mjs", "src/everything.mjs" ],
"main": "src/metro.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.git"
},
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/muze-nl/metro/issues"
},
"homepage": "https://github.com/muze-nl/metro/#readme",
"devDependencies": {
"eslint": "^8.13.0",
"tap": "^16.0.1"
},
"engines": {
"node": ">=20.0.0"
},
"files": [
"/src",
"/dist",
"/LICENSE",
"/README.md"
]
}