forked from AdguardTeam/AGLint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.62 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@adguard/aglint",
"version": "2.0.9",
"description": "Universal adblock filter list linter.",
"keywords": [
"adblock",
"adguard",
"filter",
"linter",
"list",
"ublock"
],
"author": "AdGuard Software Ltd.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/AdguardTeam/AGLint.git"
},
"bugs": {
"url": "https://github.com/AdguardTeam/AGLint/issues"
},
"homepage": "https://github.com/AdguardTeam/AGLint#readme",
"type": "module",
"main": "dist/aglint.cjs",
"module": "dist/aglint.esm.js",
"browser": "dist/aglint.umd.min.js",
"types": "dist/aglint.d.ts",
"bin": "dist/aglint.cli.js",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=14"
},
"scripts": {
"build": "yarn clean && yarn build-txt && yarn build-types && yarn rollup --config rollup.config.ts --configPlugin @rollup/plugin-json --configPlugin @rollup/plugin-typescript && yarn clean-types",
"build-types": "tsc --declaration --emitDeclarationOnly --outdir dist/types",
"build-txt": "tsx tasks/build-txt.ts",
"check-types": "tsc --noEmit",
"clean": "rimraf dist",
"clean-types": "rimraf dist/types",
"coverage": "jest --coverage",
"lint": "yarn lint:ts && yarn lint:md",
"lint:md": "markdownlint .",
"lint:ts": "eslint . --cache --ext .ts",
"prepare": "node .husky/install.mjs",
"increment": "yarn version --patch --no-git-tag-version",
"test": "jest --runInBand"
},
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@rollup/plugin-alias": "^5.0.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.1",
"@swc/core": "^1.3.74",
"@swc/jest": "^0.2.28",
"@types/clone-deep": "^4.0.1",
"@types/fs-extra": "^11.0.1",
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.5",
"@types/node": "^18.11.7",
"@types/text-table": "^0.2.2",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"ci-info": "^4.0.0",
"eslint": "^8.43.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-import-newlines": "^1.3.1",
"eslint-plugin-jsdoc": "^46.3.0",
"husky": "^9.0.7",
"jest": "^29.5.0",
"jsdoc": "^4.0.2",
"markdownlint": "^0.30.0",
"markdownlint-cli": "^0.35.0",
"rimraf": "^5.0.1",
"rollup": "^3.25.3",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-node-externals": "^6.1.1",
"rollup-plugin-polyfill-node": "^0.12.0",
"ts-node": "^10.9.1",
"tsx": "^4.7.0",
"typescript": "^4.9.5"
},
"dependencies": {
"@adguard/agtree": "^1.1.8",
"@inquirer/checkbox": "^1.3.7",
"@inquirer/select": "^1.2.7",
"chalk": "4.1.2",
"clone-deep": "^4.0.1",
"commander": "^11.0.0",
"deepmerge": "^4.3.1",
"fast-deep-equal": "^3.1.3",
"fs-extra": "^11.1.1",
"ignore": "^5.2.4",
"inflection": "^2.0.1",
"js-yaml": "^4.1.0",
"strip-ansi": "6.0.1",
"superstruct": "^1.0.3",
"terminal-link": "2.1.1",
"text-table": "^0.2.0"
}
}