-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 792 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 792 Bytes
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
{
"name": "parseuri",
"version": "3.0.2",
"description": "Mighty but tiny URI parser",
"homepage": "https://slevithan.github.io/parseuri/demo/",
"exports": "./src/index.js",
"type": "module",
"scripts": {
"build": "esbuild src/index.js --bundle --minify --outfile=dist/parseuri.min.js --global-name=parseUri --footer:js=parseUri.parseUri.setTlds=parseUri.setTlds;globalThis.parseUri=parseUri.parseUri;",
"pretest": "npm run build",
"test": "jasmine",
"prepare": "npm test"
},
"author": "Steven Levithan",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/slevithan/parseuri.git"
},
"keywords": [
"uri",
"url",
"urn"
],
"devDependencies": {
"esbuild": "^0.24.0",
"jasmine": "^5.4.0"
}
}