source: frontend/node_modules/postcss/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.4 KB
Line 
1{
2 "name": "postcss",
3 "version": "8.5.15",
4 "description": "Tool for transforming styles with JS plugins",
5 "keywords": [
6 "css",
7 "manipulation",
8 "parser",
9 "postcss",
10 "preprocessor",
11 "rework",
12 "source map",
13 "transform",
14 "transpiler"
15 ],
16 "homepage": "https://postcss.org/",
17 "bugs": {
18 "url": "https://github.com/postcss/postcss/issues"
19 },
20 "license": "MIT",
21 "author": "Andrey Sitnik <andrey@sitnik.es>",
22 "repository": "postcss/postcss",
23 "funding": [
24 {
25 "type": "opencollective",
26 "url": "https://opencollective.com/postcss/"
27 },
28 {
29 "type": "tidelift",
30 "url": "https://tidelift.com/funding/github/npm/postcss"
31 },
32 {
33 "type": "github",
34 "url": "https://github.com/sponsors/ai"
35 }
36 ],
37 "main": "./lib/postcss.js",
38 "browser": {
39 "./lib/terminal-highlight": false,
40 "source-map-js": false,
41 "path": false,
42 "url": false,
43 "fs": false
44 },
45 "types": "./lib/postcss.d.ts",
46 "exports": {
47 ".": {
48 "import": "./lib/postcss.mjs",
49 "require": "./lib/postcss.js"
50 },
51 "./lib/at-rule": "./lib/at-rule.js",
52 "./lib/comment": "./lib/comment.js",
53 "./lib/container": "./lib/container.js",
54 "./lib/css-syntax-error": "./lib/css-syntax-error.js",
55 "./lib/declaration": "./lib/declaration.js",
56 "./lib/fromJSON": "./lib/fromJSON.js",
57 "./lib/input": "./lib/input.js",
58 "./lib/lazy-result": "./lib/lazy-result.js",
59 "./lib/no-work-result": "./lib/no-work-result.js",
60 "./lib/list": "./lib/list.js",
61 "./lib/map-generator": "./lib/map-generator.js",
62 "./lib/node": "./lib/node.js",
63 "./lib/parse": "./lib/parse.js",
64 "./lib/parser": "./lib/parser.js",
65 "./lib/postcss": "./lib/postcss.js",
66 "./lib/previous-map": "./lib/previous-map.js",
67 "./lib/processor": "./lib/processor.js",
68 "./lib/result": "./lib/result.js",
69 "./lib/root": "./lib/root.js",
70 "./lib/rule": "./lib/rule.js",
71 "./lib/stringifier": "./lib/stringifier.js",
72 "./lib/stringify": "./lib/stringify.js",
73 "./lib/symbols": "./lib/symbols.js",
74 "./lib/terminal-highlight": "./lib/terminal-highlight.js",
75 "./lib/tokenize": "./lib/tokenize.js",
76 "./lib/warn-once": "./lib/warn-once.js",
77 "./lib/warning": "./lib/warning.js",
78 "./package.json": "./package.json"
79 },
80 "dependencies": {
81 "nanoid": "^3.3.12",
82 "picocolors": "^1.1.1",
83 "source-map-js": "^1.2.1"
84 },
85 "engines": {
86 "node": "^10 || ^12 || >=14"
87 }
88}
Note: See TracBrowser for help on using the repository browser.