-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.3 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
{
"name": "@tbela99/css-parser",
"description": "CSS parser for node and the browser",
"version": "0.7.1",
"exports": {
".": "./dist/node/index.js",
"./umd": "./dist/index-umd-web.js",
"./web": "./dist/web/index.js",
"./cjs": "./dist/index.cjs"
},
"type": "module",
"typings": "dist/index.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"build": "rollup -c;./build.sh dist/index.d.ts 'declare interface' 'declare type'",
"test": "web-test-runner \"test/**/web.spec.js\" --node-resolve --playwright --browsers chromium firefox webkit --root-dir=.; mocha --reporter-options='maxDiffSize=1801920' \"test/**/node.spec.js\"",
"test:node": "mocha --reporter-options='maxDiffSize=1801920' \"test/**/node.spec.js\"",
"test:cov": "c8 --reporter=html --reporter=text --reporter=json-summary mocha --reporter-options='maxDiffSize=1801920' \"test/**/node.spec.js\"",
"test:web-cov": "web-test-runner \"test/**/web.spec.js\" --node-resolve --playwright --browsers chromium firefox webkit --root-dir=. --coverage",
"profile": "node --enable-source-maps --inspect-brk test/inspect.js",
"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",
"css-parser",
"node",
"ast",
"nesting",
"nested",
"compiler",
"browser",
"css-nesting",
"css-compiler",
"nested-css",
"walker"
],
"author": "Thierry Bela",
"license": "MIT OR LGPL-3.0",
"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": "^26.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/chai": "^4.3.19",
"@types/mocha": "^10.0.8",
"@types/node": "^22.5.5",
"@types/web": "^0.0.163",
"@web/test-runner": "^0.19.0",
"@web/test-runner-playwright": "^0.11.0",
"c8": "^10.1.2",
"mocha": "^10.7.3",
"playwright": "^1.47.1",
"rollup": "^4.21.3",
"rollup-plugin-dts": "^6.1.1",
"tslib": "^2.7.0"
}
}