source: frontend/node_modules/postcss-overflow-shorthand/package.json

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

Fix frontend appearance

  • Property mode set to 100644
File size: 2.0 KB
Line 
1{
2 "name": "postcss-overflow-shorthand",
3 "description": "Use the overflow shorthand in CSS",
4 "version": "3.0.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 "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 "postcss-value-parser": "^4.2.0"
31 },
32 "peerDependencies": {
33 "postcss": "^8.2"
34 },
35 "scripts": {
36 "build": "rollup -c ../../rollup/default.js",
37 "clean": "node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"",
38 "docs": "node ../../.github/bin/generate-docs/install.mjs",
39 "lint": "npm run lint:eslint && npm run lint:package-json",
40 "lint:eslint": "eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern",
41 "lint:package-json": "node ../../.github/bin/format-package-json.mjs",
42 "prepublishOnly": "npm run clean && npm run build && npm run test",
43 "test": "node .tape.mjs && npm run test:exports",
44 "test:exports": "node ./test/_import.mjs && node ./test/_require.cjs",
45 "test:rewrite-expects": "REWRITE_EXPECTS=true node .tape.mjs"
46 },
47 "homepage": "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-overflow-shorthand#readme",
48 "repository": {
49 "type": "git",
50 "url": "https://github.com/csstools/postcss-plugins.git",
51 "directory": "plugins/postcss-overflow-shorthand"
52 },
53 "bugs": "https://github.com/csstools/postcss-plugins/issues",
54 "keywords": [
55 "css",
56 "overflow",
57 "postcss",
58 "postcss-plugin",
59 "properties",
60 "shorthands",
61 "values"
62 ],
63 "csstools": {
64 "exportName": "postcssOverflowShorthand",
65 "humanReadableName": "PostCSS Overflow Shorthand"
66 },
67 "volta": {
68 "extends": "../../package.json"
69 }
70}
Note: See TracBrowser for help on using the repository browser.