forked from cssnano/cssnano
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.05 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
{
"name": "cssnano-core",
"private": true,
"scripts": {
"lint": "pnpm types && eslint . --cache",
"fixlint": "prettier --write . && pnpm lint -- --fix",
"build:integration": "node ./util/buildFrameworks.mjs",
"pretest": "pnpm lint",
"test:only": "node --test",
"test:coverage": "node --test --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=lcov.info",
"test": "pnpm test:coverage",
"types": "tsc -b",
"all-publish": "pnpm changeset publish"
},
"workspaces": [
"./packages/*"
],
"engines": {
"node": "^22.11 || ^24.11 || >=26.0"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@eslint/js": "^10.0.1",
"@types/node": "^25.9.3",
"eslint": "^10.4.1",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.6.0",
"postcss": "^8.5.15",
"postcss-font-magician": "^4.0.0",
"prettier": "^3.8.4",
"typescript": "~6.0.3"
},
"browserslist": {
"production": [
"IE 11 and last 2 versions"
]
},
"packageManager": "pnpm@10.34.2"
}