forked from csstree/csstree
-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
134 lines (134 loc) · 4.04 KB
/
package.json
File metadata and controls
134 lines (134 loc) · 4.04 KB
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "@eslint/css-tree",
"version": "4.0.3",
"description": "A tool set for CSS: fast detailed parser (CSS → AST), walker (AST traversal), generator (AST → CSS) and lexer (validation and matching) based on specs and browser implementations",
"author": "Roman Dvornov <rdvornov@gmail.com> (https://github.com/lahmatiy)",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": "eslint/csstree",
"keywords": [
"css",
"ast",
"tokenizer",
"parser",
"walker",
"lexer",
"generator",
"utils",
"syntax",
"validation"
],
"type": "module",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"sideEffects": false,
"main": "./cjs/index.cjs",
"exports": {
".": {
"import": "./lib/index.js",
"require": "./cjs/index.cjs",
"types": "./lib/index.d.ts"
},
"./dist/*": "./dist/*.js",
"./package.json": "./package.json",
"./tokenizer": {
"import": "./lib/tokenizer/index.js",
"require": "./cjs/tokenizer/index.cjs"
},
"./parser": {
"import": "./lib/parser/index.js",
"require": "./cjs/parser/index.cjs"
},
"./selector-parser": {
"import": "./lib/parser/parse-selector.js",
"require": "./cjs/parser/parse-selector.cjs"
},
"./generator": {
"import": "./lib/generator/index.js",
"require": "./cjs/generator/index.cjs"
},
"./walker": {
"import": "./lib/walker/index.js",
"require": "./cjs/walker/index.cjs"
},
"./convertor": {
"import": "./lib/convertor/index.js",
"require": "./cjs/convertor/index.cjs"
},
"./lexer": {
"import": "./lib/lexer/index.js",
"require": "./cjs/lexer/index.cjs"
},
"./definition-syntax": {
"import": "./lib/definition-syntax/index.js",
"require": "./cjs/definition-syntax/index.cjs"
},
"./definition-syntax-data": {
"import": "./lib/data.js",
"require": "./cjs/data.cjs",
"types": "./lib/data.d.ts"
},
"./definition-syntax-data-patch": {
"import": "./lib/data-patch.js",
"require": "./cjs/data-patch.cjs"
},
"./utils": {
"import": "./lib/utils/index.js",
"require": "./cjs/utils/index.cjs"
}
},
"browser": {
"./cjs/data.cjs": "./dist/data.cjs",
"./cjs/version.cjs": "./dist/version.cjs",
"./lib/data.js": "./dist/data.js",
"./lib/version.js": "./dist/version.js"
},
"unpkg": "dist/csstree.esm.js",
"jsdelivr": "dist/csstree.esm.js",
"scripts": {
"watch": "npm run build -- --watch",
"build": "npm run bundle && npm run esm-to-cjs --",
"build-and-test": "npm run build && npm run test:dist && npm run test:cjs",
"bundle": "node scripts/bundle",
"bundle-and-test": "npm run bundle && npm run test:dist",
"esm-to-cjs": "node scripts/esm-to-cjs.cjs",
"esm-to-cjs-and-test": "npm run esm-to-cjs && npm run test:cjs",
"lint": "eslint lib scripts && node scripts/review-syntax-patch --lint && node scripts/update-docs --lint",
"lint-and-test": "npm run lint && npm test",
"update:docs": "node scripts/update-docs",
"review:syntax-patch": "node scripts/review-syntax-patch",
"test": "mocha lib/__tests --require lib/__tests/helpers/setup.js --reporter progress",
"test:cjs": "mocha cjs/__tests --require lib/__tests/helpers/setup.js --reporter progress",
"test:dist": "mocha dist/__tests --reporter progress",
"coverage": "c8 --exclude lib/__tests --reporter=lcovonly npm test",
"prepublishOnly": "npm run lint-and-test && npm run build-and-test",
"test:types": "tsc -p tests/types/tsconfig.json"
},
"dependencies": {
"mdn-data": "2.28.0",
"source-map-js": "^1.2.1"
},
"devDependencies": {
"c8": "^11.0.0",
"clap": "^2.0.1",
"esbuild": "^0.27.3",
"eslint": "^8.50.0",
"json-to-ast": "^2.1.0",
"mocha": "^9.2.2",
"rollup": "^2.80.0",
"typescript": "^5.7.3"
},
"engines": {
"node": "^20.19.0 || ^22.13.0 || >=24"
},
"files": [
"data",
"dist",
"cjs",
"!cjs/__tests",
"lib",
"!lib/__tests"
]
}