source: frontend/node_modules/@csstools/postcss-text-decoration-shorthand/package.json

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

Fix frontend appearance

  • Property mode set to 100644
File size: 2.4 KB
Line 
1{
2 "name": "@csstools/postcss-text-decoration-shorthand",
3 "description": "Use text-decoration in it's shorthand form in CSS",
4 "version": "1.0.0",
5 "contributors": [
6 {
7 "name": "Antonio Laguna",
8 "email": "antonio@laguna.es",
9 "url": "https://antonio.laguna.es"
10 },
11 {
12 "name": "Romain Menke",
13 "email": "romainmenke@gmail.com"
14 }
15 ],
16 "license": "CC0-1.0",
17 "funding": {
18 "type": "opencollective",
19 "url": "https://opencollective.com/csstools"
20 },
21 "engines": {
22 "node": "^12 || ^14 || >=16"
23 },
24 "main": "dist/index.cjs",
25 "module": "dist/index.mjs",
26 "types": "dist/index.d.ts",
27 "exports": {
28 ".": {
29 "import": "./dist/index.mjs",
30 "require": "./dist/index.cjs",
31 "default": "./dist/index.mjs"
32 }
33 },
34 "files": [
35 "CHANGELOG.md",
36 "LICENSE.md",
37 "README.md",
38 "dist"
39 ],
40 "dependencies": {
41 "postcss-value-parser": "^4.2.0"
42 },
43 "peerDependencies": {
44 "postcss": "^8.2"
45 },
46 "devDependencies": {
47 "autoprefixer": "^10.4.8"
48 },
49 "scripts": {
50 "build": "rollup -c ../../rollup/default.js",
51 "clean": "node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"",
52 "docs": "node ../../.github/bin/generate-docs/install.mjs && node ../../.github/bin/generate-docs/readme.mjs",
53 "lint": "npm run lint:eslint && npm run lint:package-json",
54 "lint:eslint": "eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern",
55 "lint:package-json": "node ../../.github/bin/format-package-json.mjs",
56 "prepublishOnly": "npm run clean && npm run build && npm run test",
57 "test": "node .tape.mjs && npm run test:exports",
58 "test:exports": "node ./test/_import.mjs && node ./test/_require.cjs",
59 "test:rewrite-expects": "REWRITE_EXPECTS=true node .tape.mjs"
60 },
61 "homepage": "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-text-decoration-shorthand#readme",
62 "repository": {
63 "type": "git",
64 "url": "https://github.com/csstools/postcss-plugins.git",
65 "directory": "plugins/postcss-text-decoration-shorthand"
66 },
67 "bugs": "https://github.com/csstools/postcss-plugins/issues",
68 "keywords": [
69 "css",
70 "postcss-plugin",
71 "shorthand",
72 "text-decoration",
73 "text-decoration-thickness"
74 ],
75 "csstools": {
76 "cssdbId": "text-decoration-shorthand",
77 "exportName": "postcssTextDecorationShorthand",
78 "humanReadableName": "PostCSS Text Decoration Shorthand",
79 "specUrl": "https://drafts.csswg.org/css-text-decor-4/#text-decoration-property"
80 },
81 "volta": {
82 "extends": "../../package.json"
83 }
84}
Note: See TracBrowser for help on using the repository browser.