-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.84 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.84 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
{
"name": "@tbela99/css-parser",
"description": "CSS parser, minifier and validator for node and the browser",
"version": "v1.4.2",
"exports": {
".": "./dist/node.js",
"./node": "./dist/node.js",
"./web": "./dist/web.js",
"./cjs": "./dist/index.cjs"
},
"type": "module",
"typings": "dist/index.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"doc": "typedoc --tsconfig typedoc-tsconfig.jsonc",
"build": "rollup -c;./build.sh ./dist/index.d.ts 'declare interface' 'declare type'",
"test": "web-test-runner \"./test/**/web.spec.js\" --timeout=10000 --node-resolve --playwright --browsers chromium firefox webkit --root-dir=.; mocha --reporter-options='maxDiffSize=1801920' --timeout=10000 \"test/**/node.spec.js\"",
"test:web": "web-test-runner \"./test/**/web.spec.js\" --timeout 30000 --node-resolve --playwright --browsers chromium firefox webkit --root-dir=.",
"test:node": "mocha -p --reporter-options='maxDiffSize=1801920' --timeout=10000 \"test/**/node.spec.js\"",
"test:cov": "c8 -x 'test/specs/**/*.js' --reporter=html --reporter=text --reporter=json-summary mocha --reporter-options='maxDiffSize=1801920' --timeout=10000 \"test/**/node.spec.js\"",
"test:web-cov": "web-test-runner -x 'test/specs/**/*.js' \"test/**/web.spec.js\" --node-resolve --playwright --browsers chromium firefox webkit --root-dir=. --coverage",
"profile": "node --enable-source-maps --inspect-brk test/inspect.js",
"syntax-update": "esno tools/validation.ts",
"debug": "web-test-runner \"./test/**/web.spec.js\" --manual --open --node-resolve --root-dir=."
},
"repository": {
"type": "git",
"url": "git+https://github.com/tbela99/css-parser.git"
},
"keywords": [
"parser",
"css",
"modules",
"css-modules",
"css-parser",
"node",
"ast",
"nesting",
"nested",
"compiler",
"browser",
"css-nesting",
"css-compiler",
"nested-css",
"walker",
"stream",
"streaming",
"streaming-parser"
],
"author": "Thierry Bela",
"license": "MIT",
"bugs": {
"url": "https://github.com/tbela99/css-parser/issues"
},
"homepage": "https://github.com/tbela99/css-parser#readme",
"devDependencies": {
"@esm-bundle/chai": "^4.3.4-fix.0",
"@rollup/plugin-commonjs": "^28.0.8",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"@types/chai": "^5.2.3",
"@types/mocha": "^10.0.10",
"@types/node": "^24.9.1",
"@types/web": "^0.0.274",
"@web/test-runner": "^0.20.2",
"@web/test-runner-playwright": "^0.11.1",
"c8": "^10.1.3",
"esno": "^4.8.0",
"mocha": "^11.7.4",
"playwright": "^1.56.1",
"rollup": "^4.52.5",
"rollup-plugin-dts": "^6.2.3",
"tslib": "^2.8.1",
"typedoc": "^0.28.14",
"typedoc-material-theme": "^1.4.0"
}
}