source: frontend/node_modules/postcss-focus-visible/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-focus-visible",
3 "version": "6.0.4",
4 "description": "Use the :focus-visible pseudo-selector 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/postcss-focus-visible#readme",
8 "bugs": "https://github.com/csstools/postcss-plugins/issues",
9 "main": "dist/index.cjs",
10 "module": "dist/index.mjs",
11 "types": "dist/index.d.ts",
12 "exports": {
13 ".": {
14 "import": "./dist/index.mjs",
15 "require": "./dist/index.cjs",
16 "default": "./dist/index.mjs"
17 }
18 },
19 "files": [
20 "CHANGELOG.md",
21 "LICENSE.md",
22 "README.md",
23 "dist"
24 ],
25 "scripts": {
26 "build": "rollup -c ../../rollup/default.js",
27 "clean": "node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"",
28 "lint": "eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern",
29 "prepublishOnly": "npm run clean && npm run build && npm run test",
30 "stryker": "stryker run --logLevel error",
31 "test": "postcss-tape --ci && npm run test:exports",
32 "test:exports": "node ./test/_import.mjs && node ./test/_require.cjs"
33 },
34 "engines": {
35 "node": "^12 || ^14 || >=16"
36 },
37 "dependencies": {
38 "postcss-selector-parser": "^6.0.9"
39 },
40 "devDependencies": {
41 "postcss": "^8.3.6",
42 "postcss-tape": "^6.0.1"
43 },
44 "peerDependencies": {
45 "postcss": "^8.4"
46 },
47 "keywords": [
48 "postcss",
49 "css",
50 "postcss-plugin",
51 "focus",
52 "ring",
53 "css",
54 "pseudos",
55 "selectors",
56 "accessibility",
57 "a11y",
58 "keyboards",
59 "pointer",
60 "cursor",
61 "mice",
62 "mouse",
63 "pen",
64 "touch",
65 "trackpad",
66 "button",
67 "input",
68 "select",
69 "textarea",
70 "contenteditable",
71 "javascript",
72 "js"
73 ],
74 "repository": {
75 "type": "git",
76 "url": "https://github.com/csstools/postcss-plugins.git",
77 "directory": "plugins/postcss-focus-visible"
78 },
79 "volta": {
80 "extends": "../../package.json"
81 }
82}
Note: See TracBrowser for help on using the repository browser.