source: frontend/node_modules/css-has-pseudo/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.2 KB
Line 
1{
2 "name": "css-has-pseudo",
3 "version": "3.0.4",
4 "description": "Style elements relative to other elements in CSS",
5 "author": "Jonathan Neal <jonathantneal@hotmail.com>",
6 "license": "CC0-1.0",
7 "homepage": "https://github.com/csstools/postcss-plugins/tree/main/plugins/css-has-pseudo#readme",
8 "bugs": "https://github.com/csstools/postcss-plugins/issues",
9 "main": "dist/index.cjs",
10 "module": "dist/index.mjs",
11 "exports": {
12 ".": {
13 "import": "./dist/index.mjs",
14 "require": "./dist/index.cjs",
15 "default": "./dist/index.mjs"
16 },
17 "./browser": {
18 "import": "./dist/browser.mjs",
19 "require": "./dist/browser.cjs",
20 "default": "./dist/browser.mjs"
21 },
22 "./browser-global": {
23 "default": "./dist/browser-global.js"
24 }
25 },
26 "files": [
27 "CHANGELOG.md",
28 "LICENSE.md",
29 "README.md",
30 "dist",
31 "browser.js"
32 ],
33 "bin": {
34 "css-has-pseudo": "dist/cli.cjs"
35 },
36 "scripts": {
37 "build": "rollup -c ../../rollup/default.js && npm run copy-browser-scripts-to-old-location",
38 "clean": "node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"",
39 "copy-browser-scripts-to-old-location": "node -e \"fs.copyFileSync('./dist/browser-global.js', './browser.js')\"",
40 "lint": "eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern",
41 "prepublishOnly": "npm run clean && npm run build && npm run test",
42 "stryker": "stryker run --logLevel error",
43 "test": "postcss-tape --ci && npm run test:exports",
44 "test:exports": "node ./test/_import.mjs && node ./test/_require.cjs"
45 },
46 "engines": {
47 "node": "^12 || ^14 || >=16"
48 },
49 "dependencies": {
50 "postcss-selector-parser": "^6.0.9"
51 },
52 "devDependencies": {
53 "postcss": "^8.3.6",
54 "postcss-tape": "^6.0.1"
55 },
56 "peerDependencies": {
57 "postcss": "^8.4"
58 },
59 "keywords": [
60 "postcss",
61 "css",
62 "postcss-plugin",
63 "javascript",
64 "js",
65 "polyfill",
66 "has",
67 "contains",
68 "descendant",
69 "pseudo",
70 "selector"
71 ],
72 "repository": {
73 "type": "git",
74 "url": "https://github.com/csstools/postcss-plugins.git",
75 "directory": "plugins/css-has-pseudo"
76 },
77 "volta": {
78 "extends": "../../package.json"
79 }
80}
Note: See TracBrowser for help on using the repository browser.