forked from csstools/postcss-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.97 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.97 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": "@csstools/csstools-cli",
"description": "Transform CSS with any plugin from csstools/postcss-plugins",
"version": "2.0.1",
"contributors": [
{
"name": "Antonio Laguna",
"email": "antonio@laguna.es",
"url": "https://antonio.laguna.es"
},
{
"name": "Romain Menke",
"email": "romainmenke@gmail.com"
}
],
"license": "CC0-1.0",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/csstools"
},
"engines": {
"node": "^14 || ^16 || >=18"
},
"bin": {
"csstools-cli": "dist/cli.cjs"
},
"types": "dist/cli.d.ts",
"files": [
"CHANGELOG.md",
"LICENSE.md",
"README.md",
"dist"
],
"dependencies": {
"@csstools/postcss-cascade-layers": "^3.0.0",
"@csstools/postcss-color-function": "^2.0.0",
"@csstools/postcss-font-format-keywords": "^2.0.0",
"@csstools/postcss-hwb-function": "^2.2.0",
"@csstools/postcss-ic-unit": "^2.0.0",
"@csstools/postcss-is-pseudo-class": "^3.0.0",
"@csstools/postcss-logical-float-and-clear": "^1.0.0",
"@csstools/postcss-logical-resize": "^1.0.0",
"@csstools/postcss-logical-viewport-units": "^1.0.0",
"@csstools/postcss-normalize-display-values": "^2.0.0",
"@csstools/postcss-oklab-function": "^2.2.0",
"@csstools/postcss-stepped-value-functions": "^2.0.0",
"@csstools/postcss-trigonometric-functions": "^2.0.0",
"@csstools/postcss-unset-value": "^2.0.0",
"css-blank-pseudo": "^5.0.0",
"css-has-pseudo": "^5.0.0",
"css-prefers-color-scheme": "^8.0.0",
"postcss": "^8.4.21",
"postcss-attribute-case-insensitive": "^6.0.0",
"postcss-color-functional-notation": "^5.0.0",
"postcss-color-hex-alpha": "^9.0.0",
"postcss-color-rebeccapurple": "^8.0.0",
"postcss-custom-media": "^9.1.0",
"postcss-custom-properties": "^13.1.0",
"postcss-custom-selectors": "^7.1.0",
"postcss-dir-pseudo-class": "^7.0.0",
"postcss-double-position-gradients": "^4.0.0",
"postcss-focus-visible": "^8.0.0",
"postcss-focus-within": "^7.0.0",
"postcss-gap-properties": "^4.0.0",
"postcss-image-set-function": "^5.0.0",
"postcss-lab-function": "^5.2.0",
"postcss-logical": "^6.0.0",
"postcss-nesting": "^11.0.0",
"postcss-overflow-shorthand": "^4.0.0",
"postcss-place": "^8.0.0",
"postcss-preset-env": "^8.0.0",
"postcss-pseudo-class-any-link": "^8.0.0",
"postcss-selector-not": "^7.0.0"
},
"devDependencies": {
"@csstools/base-cli": "0.1.0"
},
"scripts": {
"build": "rollup -c ../../rollup/default.mjs && npm run set-cli-file-permissions",
"csstools-cli": "csstools-cli",
"lint": "node ../../.github/bin/format-package-json.mjs",
"prepublishOnly": "npm run build && npm run test",
"set-cli-file-permissions": "chmod a+x ./dist/cli.cjs",
"test": "exit 0",
"test:cli": "bash ./test/cli/test.sh"
},
"homepage": "https://github.com/csstools/postcss-plugins/tree/main/cli/csstools-cli#readme",
"repository": {
"type": "git",
"url": "https://github.com/csstools/postcss-plugins.git",
"directory": "cli/csstools-cli"
},
"volta": {
"extends": "../../package.json"
}
}