-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 868 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
{
"type": "module",
"name": "mouri",
"version": "2.0.0",
"description": "A simple, easy to use, and relatively performant way to create and join uri parts together.",
"main": "publish/uri.js",
"module": "publish/uri.js",
"types": "uri.ts",
"exports": {
"import": "./publish/uri.js",
"default": "./publish/uri.js"
},
"files": [
"publish/*",
"uri.ts",
"tsconfig.json"
],
"scripts": {
"test": "deno test && deno test --doc uri.ts",
"bench": "deno run --allow-write --allow-read --allow-hrtime ./bench.ts",
"bench:update": "deno run --allow-write --allow-read --allow-hrtime ./bench.ts update-readme",
"build": "tsc"
},
"devDependencies": {
"typescript": "^4.2.4"
},
"author": "bree",
"repository": "github:brecert/mouri",
"license": "MIT",
"keywords": [
"uri",
"url",
"join"
]
}