-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.41 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
{
"name": "@adguard/dead-domains-linter",
"version": "1.0.21",
"description": "Simple tool to check adblock filtering rules for dead domains.",
"keywords": [
"adblock",
"adguard",
"filter",
"linter",
"list",
"ublock"
],
"author": "AdGuard Software Ltd.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/AdguardTeam/DeadDomainsLinter.git"
},
"bugs": {
"url": "https://github.com/AdguardTeam/DeadDomainsLinter/issues"
},
"homepage": "https://github.com/AdguardTeam/DeadDomainsLinter#readme",
"files": [
"src"
],
"bin": {
"dead-domains-linter": "src/cli.js"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@adguard/agtree": "^1.1.7",
"consola": "^3.2.3",
"glob": "^10.3.10",
"node-fetch": "^2.7.0",
"tldts": "^6.1.4",
"yargs": "^17.7.2"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/eslint-parser": "^7.23.9",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.0.4",
"husky": "^9.0.6",
"jest": "^29.7.0",
"jsdoc": "^4.0.2"
},
"scripts": {
"lint": "eslint . --cache",
"test": "jest --runInBand --detectOpenHandles --verbose .",
"increment": "npm version patch --no-git-tag-version",
"prepare": "husky",
"build-txt": "node tools/build-txt.js"
}
}