| 1 | {
|
|---|
| 2 | "name": "postcss-color-rebeccapurple",
|
|---|
| 3 | "description": "Use the rebeccapurple color keyword in CSS",
|
|---|
| 4 | "version": "7.1.1",
|
|---|
| 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": "Jonathan Neal",
|
|---|
| 17 | "email": "jonathantneal@hotmail.com"
|
|---|
| 18 | },
|
|---|
| 19 | {
|
|---|
| 20 | "name": "Maxime Thirouin"
|
|---|
| 21 | }
|
|---|
| 22 | ],
|
|---|
| 23 | "license": "CC0-1.0",
|
|---|
| 24 | "funding": {
|
|---|
| 25 | "type": "opencollective",
|
|---|
| 26 | "url": "https://opencollective.com/csstools"
|
|---|
| 27 | },
|
|---|
| 28 | "engines": {
|
|---|
| 29 | "node": "^12 || ^14 || >=16"
|
|---|
| 30 | },
|
|---|
| 31 | "main": "dist/index.cjs",
|
|---|
| 32 | "module": "dist/index.mjs",
|
|---|
| 33 | "types": "dist/index.d.ts",
|
|---|
| 34 | "exports": {
|
|---|
| 35 | ".": {
|
|---|
| 36 | "import": "./dist/index.mjs",
|
|---|
| 37 | "require": "./dist/index.cjs",
|
|---|
| 38 | "default": "./dist/index.mjs"
|
|---|
| 39 | }
|
|---|
| 40 | },
|
|---|
| 41 | "files": [
|
|---|
| 42 | "CHANGELOG.md",
|
|---|
| 43 | "LICENSE.md",
|
|---|
| 44 | "README.md",
|
|---|
| 45 | "dist"
|
|---|
| 46 | ],
|
|---|
| 47 | "dependencies": {
|
|---|
| 48 | "postcss-value-parser": "^4.2.0"
|
|---|
| 49 | },
|
|---|
| 50 | "peerDependencies": {
|
|---|
| 51 | "postcss": "^8.2"
|
|---|
| 52 | },
|
|---|
| 53 | "scripts": {
|
|---|
| 54 | "build": "rollup -c ../../rollup/default.js",
|
|---|
| 55 | "clean": "node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"",
|
|---|
| 56 | "docs": "node ../../.github/bin/generate-docs/install.mjs && node ../../.github/bin/generate-docs/readme.mjs",
|
|---|
| 57 | "lint": "npm run lint:eslint && npm run lint:package-json",
|
|---|
| 58 | "lint:eslint": "eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern",
|
|---|
| 59 | "lint:package-json": "node ../../.github/bin/format-package-json.mjs",
|
|---|
| 60 | "prepublishOnly": "npm run clean && npm run build && npm run test",
|
|---|
| 61 | "test": "node .tape.mjs && npm run test:exports",
|
|---|
| 62 | "test:exports": "node ./test/_import.mjs && node ./test/_require.cjs",
|
|---|
| 63 | "test:rewrite-expects": "REWRITE_EXPECTS=true node .tape.mjs"
|
|---|
| 64 | },
|
|---|
| 65 | "homepage": "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-rebeccapurple#readme",
|
|---|
| 66 | "repository": {
|
|---|
| 67 | "type": "git",
|
|---|
| 68 | "url": "https://github.com/csstools/postcss-plugins.git",
|
|---|
| 69 | "directory": "plugins/postcss-color-rebeccapurple"
|
|---|
| 70 | },
|
|---|
| 71 | "bugs": "https://github.com/csstools/postcss-plugins/issues",
|
|---|
| 72 | "keywords": [
|
|---|
| 73 | "becca",
|
|---|
| 74 | "color",
|
|---|
| 75 | "colors",
|
|---|
| 76 | "css",
|
|---|
| 77 | "csswg",
|
|---|
| 78 | "eric",
|
|---|
| 79 | "meyer",
|
|---|
| 80 | "postcss",
|
|---|
| 81 | "postcss-plugin",
|
|---|
| 82 | "purple",
|
|---|
| 83 | "rebecca",
|
|---|
| 84 | "rgb",
|
|---|
| 85 | "syntax",
|
|---|
| 86 | "w3c"
|
|---|
| 87 | ],
|
|---|
| 88 | "csstools": {
|
|---|
| 89 | "cssdbId": "rebeccapurple-color",
|
|---|
| 90 | "exportName": "postcssRebeccaPurple",
|
|---|
| 91 | "humanReadableName": "PostCSS RebeccaPurple",
|
|---|
| 92 | "specUrl": "https://www.w3.org/TR/css-color-4/#valdef-color-rebeccapurple"
|
|---|
| 93 | },
|
|---|
| 94 | "volta": {
|
|---|
| 95 | "extends": "../../package.json"
|
|---|
| 96 | }
|
|---|
| 97 | }
|
|---|