-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.08 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
{
"name": "postcss-calc",
"version": "11.1.2",
"type": "module",
"description": "PostCSS plugin to reduce calc()",
"keywords": [
"css",
"postcss",
"postcss-plugin",
"calculation",
"calc"
],
"homepage": "https://github.com/postcss/postcss-calc",
"repository": {
"type": "git",
"url": "git+https://github.com/postcss/postcss-calc.git"
},
"exports": {
".": {
"types": "./types/index.d.ts",
"default": "./src/index.js"
},
"./reduce": {
"types": "./types/reduce.d.ts",
"default": "./src/reduce.js"
}
},
"files": [
"src",
"types",
"LICENSE"
],
"scripts": {
"lint": "oxlint . && tsc && oxfmt --check",
"fmt": "oxfmt",
"benchmark:arithmetic-chains": "node scripts/benchmark-arithmetic-chains.js",
"benchmark:nested-fallbacks": "node scripts/benchmark-nested-fallbacks.js",
"benchmark:corpus": "node scripts/benchmark.js",
"benchmark:serialization": "node scripts/benchmark-serialization.js",
"test:benchmark": "node --test 'test/unit/benchmark-*.test.js' test/unit/compare-parser-benchmarks.test.js test/unit/corpus-benchmark.test.js",
"test:benchmark:simulation": "node test/benchmark/statistical-simulation.js",
"benchmark:reanalyze": "node scripts/compare-parser-benchmarks.js",
"test": "node --test --test-reporter=dot 'test/**/*.test.js' 'test/**/*.test.cjs'",
"test:mutation:corpus": "node test/mutation/corpus-selection.js",
"test:corpus:full": "POSTCSS_CALC_FULL_CORPUS=1 node --test test/conformance/corpus.test.js"
},
"author": "Andy Jansson",
"license": "MIT",
"engines": {
"node": "^22.22.3 || ^24.15 || >=26.0"
},
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": "12.4.2"
}
},
"devDependencies": {
"@csstools/css-calc": "^3.3.0",
"@types/node": "^26.5.1",
"fast-check": "^4.10.0",
"oxfmt": "^0.68.0",
"oxlint": "^1.83.0",
"postcss": "^8.5.28",
"typescript": "~7.0.2"
},
"dependencies": {
"@csstools/css-tokenizer": "^4.0.0"
},
"peerDependencies": {
"postcss": "^8.5.28"
}
}