forked from cssnano/cssnano
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.49 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
70
71
72
73
74
75
76
{
"name": "cssnano-core",
"private": true,
"scripts": {
"lint": "pnpm types && eslint . --cache --ignore-path .gitignore --ext .js,.mjs",
"fixlint": "prettier --write . && pnpm lint -- --fix",
"build:integration": "node ./util/buildFrameworks.mjs",
"pretest": "pnpm lint",
"test:only": "uvu packages \"test.*\\.js$\"",
"test:coverage": "c8 pnpm test:only",
"test": "pnpm test:coverage",
"test:helpers": "uvu packages \"test.*\\.mjs$\"",
"types": "tsc -b",
"all-publish": "pnpm changeset publish"
},
"workspaces": [
"./packages/*"
],
"engines": {
"node": "^14 || ^16 || >=18"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@types/node": "^20.2.5",
"c8": "^7.14.0",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"postcss": "^8.4.31",
"postcss-font-magician": "^3.0.0",
"prettier": "^2.8.8",
"typescript": "~5.0.4",
"uvu": "^0.5.6"
},
"browserslist": {
"production": [
"IE 11 and last 2 versions"
],
"chrome58": [
"Chrome 58"
],
"chrome62": [
"Chrome 62"
],
"edge15": [
"Edge 15"
],
"ie6": [
"IE 6"
],
"ie7": [
"IE 7"
],
"ie8": [
"IE 8"
],
"ie9": [
"IE 9"
],
"ie11": [
"IE 11"
],
"not ie": [
"defaults",
"not ie <=11"
],
"opera9": [
"Opera 9"
],
"firefox2": [
"Firefox 2"
],
"safari5": [
"Safari < 5"
]
}
}