-
-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
69 lines (69 loc) · 1.42 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
{
"name": "postcss-mixins",
"version": "11.0.3",
"description": "PostCSS plugin for mixins",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"mixins",
"sass"
],
"scripts": {
"unit": "node --test test/index.test.js",
"test:coverage": "c8 pnpm unit",
"test:lint": "eslint .",
"test": "pnpm run /^test:/"
},
"author": "Andrey Sitnik <[email protected]>",
"license": "MIT",
"repository": "postcss/postcss-mixins",
"engines": {
"node": "^18.0 || ^ 20.0 || >= 22.0"
},
"funding": [
{
"type": "opencollective",
"url": "https://opencollective.com/postcss/"
},
{
"type": "github",
"url": "https://github.com/sponsors/ai"
}
],
"peerDependencies": {
"postcss": "^8.2.14"
},
"dependencies": {
"postcss-js": "^4.0.1",
"postcss-simple-vars": "^7.0.1",
"sugarss": "^4.0.1",
"tinyglobby": "^0.2.7"
},
"devDependencies": {
"@logux/eslint-config": "^53.4.0",
"c8": "^10.1.2",
"clean-publish": "^5.0.0",
"eslint": "^9.11.1",
"postcss": "^8.4.47"
},
"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
}
}