-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.09 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
{
"name": "@muze-nl/metro",
"version": "0.5.4",
"description": "http client with middleware support",
"type": "module",
"source": [ "src/browser.mjs", "src/everything.mjs" ],
"main": "src/everything.mjs",
"scripts": {
"test": "tap test/*.mjs",
"tap": "tap",
"build-dev": "esbuild --bundle src/browser.mjs --outfile=dist/browser.js --sourcemap; esbuild --bundle src/everything.mjs --outfile=dist/everything.js --sourcemap",
"build": "esbuild --bundle src/browser.mjs --outfile=dist/browser.min.js --minify --sourcemap; esbuild --bundle src/everything.mjs --outfile=dist/everything.min.js --minify --sourcemap"
},
"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"
]
}