-
Notifications
You must be signed in to change notification settings - Fork 106
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1004 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 1004 Bytes
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
{
"name": "adguard-hostlists-registry",
"version": "1.0.0",
"description": "Hostlists Registry",
"main": "scripts/compose.js",
"engines": {
"node": ">=18"
},
"dependencies": {
"@adguard/hostlist-compiler": "^1.0.35",
"chalk": "^4.0.0",
"dayjs": "^1.11.11",
"js-yaml": "^4.1.0",
"md5": "^2.3.0",
"simple-git": "^3.27.0",
"xmldom": "^0.6.0",
"zod": "^4.1.4"
},
"scripts": {
"compose": "node ./compose.js",
"locales:prepare": "node scripts/translations/prepare.js",
"locales:download": "node scripts/translations/download-locales.mjs",
"locales:upload": "node scripts/translations/upload-base-locale.mjs",
"compress": "node scripts/repository/compress.js",
"lint": "eslint ."
},
"devDependencies": {
"axios": "^1.6.0",
"eslint": "^8.49.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsdoc": "^46.8.2",
"form-data": "^4.0.0",
"semver": "^7.7.2"
}
}