source: frontend/node_modules/postcss-preset-env/package.json

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 4.0 KB
Line 
1{
2 "name": "postcss-preset-env",
3 "description": "Convert modern CSS into something browsers understand",
4 "version": "7.8.3",
5 "author": "Jonathan Neal <jonathantneal@hotmail.com>",
6 "license": "CC0-1.0",
7 "funding": {
8 "type": "opencollective",
9 "url": "https://opencollective.com/csstools"
10 },
11 "engines": {
12 "node": "^12 || ^14 || >=16"
13 },
14 "main": "dist/index.cjs",
15 "module": "dist/index.mjs",
16 "exports": {
17 ".": {
18 "import": "./dist/index.mjs",
19 "require": "./dist/index.cjs",
20 "default": "./dist/index.mjs"
21 }
22 },
23 "files": [
24 "CHANGELOG.md",
25 "LICENSE.md",
26 "README.md",
27 "dist"
28 ],
29 "dependencies": {
30 "@csstools/postcss-cascade-layers": "^1.1.1",
31 "@csstools/postcss-color-function": "^1.1.1",
32 "@csstools/postcss-font-format-keywords": "^1.0.1",
33 "@csstools/postcss-hwb-function": "^1.0.2",
34 "@csstools/postcss-ic-unit": "^1.0.1",
35 "@csstools/postcss-is-pseudo-class": "^2.0.7",
36 "@csstools/postcss-nested-calc": "^1.0.0",
37 "@csstools/postcss-normalize-display-values": "^1.0.1",
38 "@csstools/postcss-oklab-function": "^1.1.1",
39 "@csstools/postcss-progressive-custom-properties": "^1.3.0",
40 "@csstools/postcss-stepped-value-functions": "^1.0.1",
41 "@csstools/postcss-text-decoration-shorthand": "^1.0.0",
42 "@csstools/postcss-trigonometric-functions": "^1.0.2",
43 "@csstools/postcss-unset-value": "^1.0.2",
44 "autoprefixer": "^10.4.13",
45 "browserslist": "^4.21.4",
46 "css-blank-pseudo": "^3.0.3",
47 "css-has-pseudo": "^3.0.4",
48 "css-prefers-color-scheme": "^6.0.3",
49 "cssdb": "^7.1.0",
50 "postcss-attribute-case-insensitive": "^5.0.2",
51 "postcss-clamp": "^4.1.0",
52 "postcss-color-functional-notation": "^4.2.4",
53 "postcss-color-hex-alpha": "^8.0.4",
54 "postcss-color-rebeccapurple": "^7.1.1",
55 "postcss-custom-media": "^8.0.2",
56 "postcss-custom-properties": "^12.1.10",
57 "postcss-custom-selectors": "^6.0.3",
58 "postcss-dir-pseudo-class": "^6.0.5",
59 "postcss-double-position-gradients": "^3.1.2",
60 "postcss-env-function": "^4.0.6",
61 "postcss-focus-visible": "^6.0.4",
62 "postcss-focus-within": "^5.0.4",
63 "postcss-font-variant": "^5.0.0",
64 "postcss-gap-properties": "^3.0.5",
65 "postcss-image-set-function": "^4.0.7",
66 "postcss-initial": "^4.0.1",
67 "postcss-lab-function": "^4.2.1",
68 "postcss-logical": "^5.0.4",
69 "postcss-media-minmax": "^5.0.0",
70 "postcss-nesting": "^10.2.0",
71 "postcss-opacity-percentage": "^1.1.2",
72 "postcss-overflow-shorthand": "^3.0.4",
73 "postcss-page-break": "^3.0.4",
74 "postcss-place": "^7.0.5",
75 "postcss-pseudo-class-any-link": "^7.1.6",
76 "postcss-replace-overflow-wrap": "^4.0.0",
77 "postcss-selector-not": "^6.0.1",
78 "postcss-value-parser": "^4.2.0"
79 },
80 "peerDependencies": {
81 "postcss": "^8.2"
82 },
83 "devDependencies": {
84 "postcss-simple-vars": "^7.0.0"
85 },
86 "scripts": {
87 "prebuild": "node ./scripts/generate-plugins-data.mjs && eslint --fix ./src/plugins/*.mjs",
88 "build": "rollup -c ../../rollup/default.js",
89 "clean": "node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"",
90 "docs": "node ./docs/generate.mjs",
91 "lint": "npm run lint:eslint && npm run lint:package-json",
92 "lint:eslint": "eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern",
93 "lint:package-json": "node ../../.github/bin/format-package-json.mjs",
94 "prepublishOnly": "npm run clean && npm run build && npm run test",
95 "stryker": "stryker run --logLevel error",
96 "test": "node .tape.mjs && node ./src/test/test.mjs && npm run test:exports",
97 "test:exports": "node ./test/_import.mjs && node ./test/_require.cjs",
98 "test:rewrite-expects": "REWRITE_EXPECTS=true node .tape.mjs"
99 },
100 "homepage": "https://github.com/csstools/postcss-plugins/tree/main/plugin-packs/postcss-preset-env#readme",
101 "repository": {
102 "type": "git",
103 "url": "https://github.com/csstools/postcss-plugins.git",
104 "directory": "plugin-packs/postcss-preset-env"
105 },
106 "bugs": "https://github.com/csstools/postcss-plugins/issues",
107 "keywords": [
108 "css",
109 "csswg",
110 "features",
111 "future",
112 "lists",
113 "next",
114 "postcss",
115 "postcss-plugin",
116 "specifications",
117 "specs",
118 "stages",
119 "w3c"
120 ],
121 "volta": {
122 "extends": "../../package.json"
123 }
124}
Note: See TracBrowser for help on using the repository browser.