source: frontend/node_modules/postcss-color-functional-notation/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: 2.1 KB
Line 
1{
2 "name": "postcss-color-functional-notation",
3 "description": "Use space and slash separated color notation in CSS",
4 "version": "4.2.4",
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 "types": "./dist/index.d.ts",
17 "exports": {
18 ".": {
19 "import": "./dist/index.mjs",
20 "require": "./dist/index.cjs",
21 "default": "./dist/index.mjs"
22 }
23 },
24 "files": [
25 "CHANGELOG.md",
26 "LICENSE.md",
27 "README.md",
28 "dist"
29 ],
30 "dependencies": {
31 "postcss-value-parser": "^4.2.0"
32 },
33 "peerDependencies": {
34 "postcss": "^8.2"
35 },
36 "scripts": {
37 "build": "rollup -c ../../rollup/default.js",
38 "clean": "node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"",
39 "docs": "node ../../.github/bin/generate-docs/install.mjs",
40 "lint": "npm run lint:eslint && npm run lint:package-json",
41 "lint:eslint": "eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern",
42 "lint:package-json": "node ../../.github/bin/format-package-json.mjs",
43 "prepublishOnly": "npm run clean && npm run build && npm run test",
44 "test": "node .tape.mjs && npm run test:exports",
45 "test:exports": "node ./test/_import.mjs && node ./test/_require.cjs",
46 "test:rewrite-expects": "REWRITE_EXPECTS=true node .tape.mjs"
47 },
48 "homepage": "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-functional-notation#readme",
49 "repository": {
50 "type": "git",
51 "url": "https://github.com/csstools/postcss-plugins.git",
52 "directory": "plugins/postcss-color-functional-notation"
53 },
54 "bugs": "https://github.com/csstools/postcss-plugins/issues",
55 "keywords": [
56 "color",
57 "colors",
58 "comma",
59 "css",
60 "design",
61 "functional",
62 "hsl",
63 "hsla",
64 "hwb",
65 "notation",
66 "postcss",
67 "postcss-plugin",
68 "rgb",
69 "rgba",
70 "space",
71 "syntax"
72 ],
73 "csstools": {
74 "exportName": "postcssColorFunctionalNotation",
75 "humanReadableName": "PostCSS Color Functional Notation"
76 },
77 "volta": {
78 "extends": "../../package.json"
79 }
80}
Note: See TracBrowser for help on using the repository browser.