-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.14 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.14 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "autoprefixer",
"version": "10.5.0",
"description": "Parse CSS and add vendor prefixes to CSS rules using values from the Can I Use website",
"keywords": [
"autoprefixer",
"css",
"postcss",
"postcss-plugin",
"prefix"
],
"bugs": {
"url": "https://github.com/postcss/autoprefixer/issues"
},
"license": "MIT",
"author": "Andrey Sitnik <andrey@sitnik.es>",
"repository": "postcss/autoprefixer",
"funding": [
{
"type": "opencollective",
"url": "https://opencollective.com/postcss/"
},
{
"type": "tidelift",
"url": "https://tidelift.com/funding/github/npm/autoprefixer"
},
{
"type": "github",
"url": "https://github.com/sponsors/ai"
}
],
"bin": "bin/autoprefixer",
"main": "lib/autoprefixer.js",
"types": "lib/autoprefixer.d.ts",
"scripts": {
"unit": "uvu . '\\.test\\.js$'",
"test:coverage": "c8 node node_modules/uvu/bin.js . '\\.test\\.js$'",
"test:lint": "oxlint . bin/*",
"test:size": "size-limit",
"test": "pnpm run /^test:/"
},
"dependencies": {
"browserslist": "^4.28.2",
"caniuse-lite": "^1.0.30001787",
"fraction.js": "^5.3.4",
"picocolors": "^1.1.1",
"postcss-value-parser": "^4.2.0"
},
"devDependencies": {
"@logux/oxc-configs": "^0.3.3",
"@size-limit/preset-small-lib": "12.1.0",
"actions-up": "^1.13.0",
"c8": "^11.0.0",
"clean-publish": "^6.0.5",
"eslint-plugin-prefer-let": "^4.2.2",
"nanospy": "^1.0.0",
"oxlint": "^1.60.0",
"oxlint-tsgolint": "^0.20.0",
"postcss": "^8.5.9",
"size-limit": "^12.1.0",
"typescript": "^6.0.2",
"uvu": "^0.5.6"
},
"peerDependencies": {
"postcss": "^8.1.0"
},
"size-limit": [
{
"limit": "70 KB"
}
],
"c8": {
"check-coverage": true,
"clean": true,
"exclude": [
"test/*"
],
"lines": 100,
"reporter": [
"text",
"lcov"
],
"skip-full": true
},
"engines": {
"node": "^10 || ^12 || >=14"
},
"pnpm": {
"patchedDependencies": {
"yargs@17.7.2": "patches/yargs@17.7.2.patch"
}
},
"clean-publish": {
"cleanDocs": true
}
}