forked from cssnano/cssnano
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.66 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
77
78
79
{
"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": "^10 || ^12 || >=14"
},
"devDependencies": {
"@changesets/cli": "^2.21.1",
"browserslist": "^4.20.2",
"c8": "^7.11.0",
"diff": "^5.0.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"html-to-text": "^8.1.0",
"nanospy": "^0.5.0",
"node-fetch": "2.6.7",
"picocolors": "^1.0.0",
"pleeease-filters": "^4.0.0",
"postcss": "^8.4.10",
"postcss-font-magician": "^3.0.0",
"postcss-scss": "^3.0.4",
"postcss-simple-vars": "^6.0.1",
"postcss-value-parser": "^4.2.0",
"prettier": "^2.6.0",
"typescript": "^4.6.2",
"uvu": "^0.5.3"
},
"browserslist": {
"chrome58": [
"Chrome 58"
],
"chrome62": [
"Chrome 62"
],
"edge15": [
"Edge 15"
],
"ie6": [
"IE 6"
],
"ie7": [
"IE 7"
],
"ie8": [
"IE 8"
],
"ie9": [
"IE 9"
],
"not ie": [
"defaults",
"not ie <=11"
],
"opera9": [
"Opera 9"
],
"firefox2": [
"Firefox 2"
],
"safari5": [
"Safari < 5"
]
}
}