-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.01 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
{
"name": "autoprefixer",
"version": "10.5.2",
"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.4",
"caniuse-lite": "^1.0.30001799",
"fraction.js": "^5.3.4",
"picocolors": "^1.1.1",
"postcss-value-parser": "^4.2.0"
},
"devDependencies": {
"@logux/oxc-configs": "^0.4.0",
"@size-limit/preset-small-lib": "12.1.0",
"actions-up": "^1.14.3",
"c8": "^11.0.0",
"eslint-plugin-prefer-let": "^4.2.2",
"nanospy": "^2.0.1",
"oxlint": "^1.71.0",
"oxlint-tsgolint": "^0.23.0",
"postcss": "^8.5.15",
"size-limit": "^12.1.0",
"typescript": "^6.0.3",
"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"
},
"clean-publish": {
"cleanDocs": true
}
}