source: frontend/node_modules/postcss-attribute-case-insensitive/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.4 KB
Line 
1{
2 "name": "postcss-attribute-case-insensitive",
3 "description": "Enable support for case insensitive attribute matching in selectors",
4 "version": "5.0.2",
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 "name": "Dmitry Semigradsky"
17 }
18 ],
19 "license": "MIT",
20 "funding": {
21 "type": "opencollective",
22 "url": "https://opencollective.com/csstools"
23 },
24 "engines": {
25 "node": "^12 || ^14 || >=16"
26 },
27 "main": "dist/index.cjs",
28 "module": "dist/index.mjs",
29 "types": "dist/index.d.ts",
30 "exports": {
31 ".": {
32 "import": "./dist/index.mjs",
33 "require": "./dist/index.cjs",
34 "default": "./dist/index.mjs"
35 }
36 },
37 "files": [
38 "CHANGELOG.md",
39 "LICENSE",
40 "README.md",
41 "dist"
42 ],
43 "dependencies": {
44 "postcss-selector-parser": "^6.0.10"
45 },
46 "peerDependencies": {
47 "postcss": "^8.2"
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-attribute-case-insensitive#readme",
62 "repository": {
63 "type": "git",
64 "url": "https://github.com/csstools/postcss-plugins.git",
65 "directory": "plugins/postcss-attribute-case-insensitive"
66 },
67 "bugs": "https://github.com/csstools/postcss-plugins/issues",
68 "keywords": [
69 "CSS4",
70 "attribute",
71 "css",
72 "insensitive",
73 "postcss",
74 "postcss-plugin",
75 "sensitive"
76 ],
77 "csstools": {
78 "cssdbId": "case-insensitive-attributes",
79 "exportName": "postcssAttributeCaseInsensitive",
80 "humanReadableName": "PostCSS Attribute Case Insensitive",
81 "specUrl": "https://www.w3.org/TR/selectors4/#attribute-case"
82 },
83 "volta": {
84 "extends": "../../package.json"
85 }
86}
Note: See TracBrowser for help on using the repository browser.