-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.08 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
{
"name": "@adguard/ecss-tree",
"version": "1.1.0",
"description": "Adblock Extended CSS fork for CSSTree",
"author": "AdGuard Software Ltd. <https://adguard.com>",
"license": "MIT",
"type": "module",
"keywords": [
"css",
"ecss",
"extendedcss",
"ast",
"tokenizer",
"parser",
"walker",
"lexer",
"generator",
"utils",
"syntax",
"validation",
"adblock",
"ublock",
"adguard"
],
"repository": {
"type": "git",
"url": "git+https://github.com/AdguardTeam/ecsstree.git"
},
"bugs": {
"url": "https://github.com/AdguardTeam/ecsstree/issues"
},
"homepage": "https://github.com/AdguardTeam/ecsstree#readme",
"main": "dist/ecsstree.cjs",
"module": "dist/ecsstree.js",
"types": "dist/ecsstree.d.ts",
"exports": {
".": {
"types": "./dist/ecsstree.d.ts",
"import": "./dist/ecsstree.js",
"require": "./dist/ecsstree.cjs"
}
},
"files": [
"dist"
],
"dependencies": {
"css-tree": "^2.3.1"
},
"devDependencies": {
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-swc": "^0.4.0",
"@rollup/plugin-terser": "^0.2.1",
"@swc/core": "^1.7.24",
"@swc/jest": "^0.2.36",
"@types/css-tree": "^2.3.8",
"eslint": "^8.34.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-import-newlines": "^1.4.0",
"eslint-plugin-jsdoc": "^50.2.2",
"husky": "^9.1.5",
"jest": "^29.7.0",
"jsdoc": "^4.0.3",
"markdownlint": "^0.35.0",
"markdownlint-cli": "^0.41.0",
"rimraf": "^5.0.10",
"rollup": "^4.21.2",
"rollup-plugin-dts": "^6.1.1",
"typescript": "^5.6.2"
},
"scripts": {
"prepare": "node .husky/install.js",
"lint": "eslint . --cache && markdownlint .",
"test": "jest",
"build": "rimraf dist && rollup --config rollup.config.js && node tasks/build-txt.js",
"test:smoke": "(cd test/smoke/esm && yarn test) && (cd test/smoke/cjs && yarn test) && (cd test/smoke/typescript && yarn test)"
}
}