-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.66 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
58
59
60
61
62
63
64
65
66
67
{
"name": "normalize-url-plus",
"version": "1.5.4",
"description": "normalize-url plus additional features to supercharge link normalization!",
"exports": "./index.js",
"type": "module",
"repository": "JaneJeon/normalize-url-plus",
"author": "Jane Jeon <git@janejeon.com>",
"license": "LGPL-3.0",
"bin": "bin/normalize.js",
"engines": {
"node": ">=16"
},
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"update-data": "curl -L -s https://rules2.clearurls.xyz/data.minify.json > data/data.minify.json",
"lint": "run-s lint:*",
"lint:prettier": "prettier --check .",
"lint:eslint": "eslint .",
"prepare": "husky install"
},
"dependencies": {
"cacheable-lookup": "^7.0.0",
"cheerio": "^1.0.0-rc.10",
"debug": "^4.3.2",
"got": "^14.0.0",
"got-scraping": "^4.0.0",
"got-ssrf": "^3.0.0",
"ipaddr.js": "^2.0.1",
"leven": "^4.0.0",
"lodash": "^4.17.21",
"mem": "^9.0.1",
"normalize-url": "^7.0.2",
"p-timeout": "^5.0.0",
"quick-lru": "^7.0.0",
"re2": "^1.16.0",
"tld-extract": "^2.0.1"
},
"devDependencies": {
"@janejeon/eslint-config": "^2.2.0",
"@janejeon/prettier-config": "^1.1.0",
"enhanced-resolve": "^5.8.3",
"husky": "^6.0.0",
"jest": "^29.0.0",
"jest-junit": "^16.0.0",
"lint-staged": "15.3.0",
"nock": "^13.1.3",
"node-notifier": "^10.0.0",
"npm-run-all2": "^6.0.0",
"skip-ci": "^1.0.4"
},
"keywords": [
"normalize",
"url",
"uri",
"address",
"string",
"normalization",
"normalisation",
"query",
"querystring",
"simplify",
"strip",
"trim",
"canonical"
]
}