-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.14 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "urlmate",
"version": "0.1.2-beta",
"description": "A utility library for handling URLs",
"type": "module",
"main": "lib/index.js",
"module": "lib/index.js",
"exports": {
".": "./lib/index.js",
"./light": "./lib/light.js"
},
"typesVersions": {
"*": {
"*": [
"lib/index.d.ts"
],
"light": [
"lib/light.d.ts"
]
}
},
"scripts": {
"build": "rimraf lib && node ./esbuild.js && npm run ts-types",
"test": "jest",
"ts-types": " tsc"
},
"keywords": [
"url",
"domain",
"searchparams",
"path"
],
"repository": {
"type": "git",
"url": "https://github.com/taraspolovyi/urlmate.git"
},
"bugs": {
"url": "https://github.com/taraspolovyi/urlmate/issues"
},
"author": "Taras Polovyi",
"license": "MIT",
"dependencies": {
"psl": "^1.9.0",
"punycode": "^2.1.1"
},
"devDependencies": {
"@types/jest": "^28.1.5",
"@types/psl": "^1.1.0",
"esbuild": "^0.14.49",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.6",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}