source: frontend/node_modules/postcss-place/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.0 KB
Line 
1{
2 "name": "postcss-place",
3 "description": "Use a place-* shorthand for align-* and justify-* in CSS",
4 "version": "7.0.5",
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-place#readme",
48 "repository": {
49 "type": "git",
50 "url": "https://github.com/csstools/postcss-plugins.git",
51 "directory": "plugins/postcss-place"
52 },
53 "bugs": "https://github.com/csstools/postcss-plugins/issues",
54 "keywords": [
55 "alignments",
56 "aligns",
57 "contents",
58 "css",
59 "justifies",
60 "justify",
61 "postcss",
62 "postcss-plugin",
63 "selfs",
64 "shorthands"
65 ],
66 "csstools": {
67 "exportName": "postcssPlace",
68 "humanReadableName": "PostCSS Place Properties"
69 },
70 "volta": {
71 "extends": "../../package.json"
72 }
73}
Note: See TracBrowser for help on using the repository browser.