-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
71 lines (71 loc) · 1.5 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
{
"name": "webp-in-css",
"version": "0.9.0",
"description": "PostCSS plugin and tiny JS script (175 bytes) to use WebP in CSS background",
"keywords": [
"webp",
"postcss-plugin",
"css",
"background",
"polyfill"
],
"author": "Andrey Sitnik <[email protected]>",
"license": "MIT",
"repository": "ai/webp-in-css",
"bugs": {
"url": "https://github.com/ai/webp-in-css/issues"
},
"scripts": {
"test:coverage": "c8 node --test test/*.test.js",
"test:lint": "eslint .",
"test:size": "size-limit",
"test": "pnpm run /^test:/"
},
"engines": {
"node": ">=18.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/postcss/"
},
"dependencies": {
"postcss-selector-parser": "^6.1.2"
},
"peerDependencies": {
"postcss": "^8.2.14"
},
"devDependencies": {
"@logux/eslint-config": "^53.4.0",
"@size-limit/preset-small-lib": "^11.1.5",
"c8": "^10.1.2",
"clean-publish": "^5.0.0",
"eslint": "^9.11.0",
"postcss": "^8.4.47",
"size-limit": "^11.1.5"
},
"size-limit": [
{
"path": "polyfill.js",
"limit": "145 B"
}
],
"prettier": {
"arrowParens": "avoid",
"jsxSingleQuote": false,
"quoteProps": "consistent",
"semi": false,
"singleQuote": true,
"trailingComma": "none"
},
"c8": {
"exclude": [
"**/*.test.*"
],
"lines": 100,
"reporter": "lcov",
"check-coverage": true
},
"clean-publish": {
"cleanDocs": true
}
}