-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
40 lines (40 loc) · 1.1 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
{
"name": "@adguard/hostlist-compiler",
"version": "1.0.33",
"description": "A simple tool that compiles hosts blocklists from multiple sources",
"main": "src/index.js",
"types": "src/index.d.ts",
"repository": "https://github.com/AdguardTeam/HostlistCompiler",
"author": "AdGuard",
"license": "GPL-3.0",
"bin": {
"hostlist-compiler": "src/cli.js"
},
"scripts": {
"lint": "eslint . --cache",
"test": "jest --runInBand --detectOpenHandles .",
"increment": "yarn version --patch --no-git-tag-version",
"build-txt": "node tools/build-txt.js",
"compile": "node src/cli.js"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/eslint-parser": "^7.19.1",
"eslint": "^8.34.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"jest": "^25.1.0",
"mock-fs": "^4.11.0",
"nock": "^12.0.2"
},
"dependencies": {
"ajv": "^6.12.0",
"ajv-errors": "^1.0.1",
"axios": "^0.19.2",
"better-ajv-errors": "^0.6.7",
"consola": "^2.11.3",
"lodash": "^4.17.15",
"tldts": "^5.6.10",
"yargs": "^15.3.0"
}
}