Skip to content

Commit 5b34202

Browse files
collect plugins data
1 parent cd82620 commit 5b34202

206 files changed

Lines changed: 2636 additions & 2477 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

docs/index.html

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4489,7 +4489,7 @@ <h3>hwb-function <span style="font-size: 0.8em;">(csstools)</span></h3>
44894489
</dd>
44904490

44914491
<dt>Version</dt>
4492-
<dd><code>4.0.12</code></dd>
4492+
<dd><code>5.0.0</code></dd>
44934493

44944494
<dt>License</dt>
44954495
<dd><code>MIT-0</code></dd>
@@ -4499,7 +4499,7 @@ <h3>hwb-function <span style="font-size: 0.8em;">(csstools)</span></h3>
44994499

45004500

45014501
<dt>Node version range</dt>
4502-
<dd><code>&#x3E;=18</code></dd>
4502+
<dd><code>&#x3E;=20.19.0</code></dd>
45034503

45044504

45054505

@@ -4576,7 +4576,7 @@ <h3>ic-unit <span style="font-size: 0.8em;">(csstools)</span></h3>
45764576
</dd>
45774577

45784578
<dt>Version</dt>
4579-
<dd><code>4.0.4</code></dd>
4579+
<dd><code>5.0.0</code></dd>
45804580

45814581
<dt>License</dt>
45824582
<dd><code>MIT-0</code></dd>
@@ -4586,7 +4586,7 @@ <h3>ic-unit <span style="font-size: 0.8em;">(csstools)</span></h3>
45864586

45874587

45884588
<dt>Node version range</dt>
4589-
<dd><code>&#x3E;=18</code></dd>
4589+
<dd><code>&#x3E;=20.19.0</code></dd>
45904590

45914591

45924592

@@ -5014,7 +5014,7 @@ <h3>initial <span style="font-size: 0.8em;">(csstools)</span></h3>
50145014
</dd>
50155015

50165016
<dt>Version</dt>
5017-
<dd><code>2.0.1</code></dd>
5017+
<dd><code>3.0.0</code></dd>
50185018

50195019
<dt>License</dt>
50205020
<dd><code>MIT-0</code></dd>
@@ -5024,7 +5024,7 @@ <h3>initial <span style="font-size: 0.8em;">(csstools)</span></h3>
50245024

50255025

50265026
<dt>Node version range</dt>
5027-
<dd><code>&#x3E;=18</code></dd>
5027+
<dd><code>&#x3E;=20.19.0</code></dd>
50285028

50295029

50305030

@@ -5233,7 +5233,7 @@ <h3>is-pseudo-class <span style="font-size: 0.8em;">(csstools)</span></h3>
52335233
</dd>
52345234

52355235
<dt>Version</dt>
5236-
<dd><code>5.0.3</code></dd>
5236+
<dd><code>6.0.0</code></dd>
52375237

52385238
<dt>License</dt>
52395239
<dd><code>MIT-0</code></dd>
@@ -5243,7 +5243,7 @@ <h3>is-pseudo-class <span style="font-size: 0.8em;">(csstools)</span></h3>
52435243

52445244

52455245
<dt>Node version range</dt>
5246-
<dd><code>&#x3E;=18</code></dd>
5246+
<dd><code>&#x3E;=20.19.0</code></dd>
52475247

52485248

52495249

@@ -5368,7 +5368,7 @@ <h3>light-dark-function <span style="font-size: 0.8em;">(csstools)</span></h3>
53685368
</dd>
53695369

53705370
<dt>Version</dt>
5371-
<dd><code>2.0.11</code></dd>
5371+
<dd><code>3.0.0</code></dd>
53725372

53735373
<dt>License</dt>
53745374
<dd><code>MIT-0</code></dd>
@@ -5378,7 +5378,7 @@ <h3>light-dark-function <span style="font-size: 0.8em;">(csstools)</span></h3>
53785378

53795379

53805380
<dt>Node version range</dt>
5381-
<dd><code>&#x3E;=18</code></dd>
5381+
<dd><code>&#x3E;=20.19.0</code></dd>
53825382

53835383

53845384

Lines changed: 103 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
1+
{
2+
"name": "postcss-class-prefixer",
3+
"version": "1.2.0",
4+
"description": "PostCSS plugin to prefix all off the classes with a class name of your choosing.",
5+
"keywords": [
6+
"postcss",
7+
"css",
8+
"postcss-plugin",
9+
"postcss-class-prefixer",
10+
"prefixer",
11+
"webpack-loader"
12+
],
13+
"main": "dist/index.js",
14+
"scripts": {
15+
"build": "npm run clean && tsc",
16+
"clean": "rm -rf ./dist",
17+
"test": "jest-ci --coverage && eslint-ci .",
18+
"prepublishOnly": "npm run build"
19+
},
20+
"author": {
21+
"name": "Ben Szabo",
22+
"email": "[email protected]"
23+
},
24+
"license": "MIT",
25+
"repository": {
26+
"type": "git",
27+
"url": "git+https://github.com/b3nk3/postcss-class-prefixer.git"
28+
},
29+
"engines": {
30+
"node": ">=10.0.0"
31+
},
32+
"peerDependencies": {
33+
"postcss": "^8.2.6"
34+
},
35+
"devDependencies": {
36+
"@jest/types": "^26.6.2",
37+
"@types/node": "^14.14.25",
38+
"@typescript-eslint/eslint-plugin": "^4.15.0",
39+
"@typescript-eslint/parser": "^4.15.0",
40+
"clean-publish": "^1.1.8",
41+
"eslint": "^7.19.0",
42+
"eslint-ci": "^1.0.0",
43+
"eslint-config-prettier": "^7.2.0",
44+
"eslint-plugin-jest": "^24.1.3",
45+
"husky": "^4.3.0",
46+
"jest": "^26.4.2",
47+
"jest-ci": "^0.1.1",
48+
"lint-staged": "^10.4.0",
49+
"postcss": "^8.1.5",
50+
"postcss-cli": "^8.3.1",
51+
"prettier": "^2.2.1",
52+
"semantic-release": "^17.3.8",
53+
"ts-jest": "^26.5.1",
54+
"typescript": "^4.1.5"
55+
},
56+
"husky": {
57+
"hooks": {
58+
"pre-commit": "lint-staged"
59+
}
60+
},
61+
"lint-staged": {
62+
"*.js": "eslint --fix"
63+
},
64+
"gitHead": "03442ad1a81c128dcc2bba82da72d1f02802be09",
65+
"bugs": {
66+
"url": "https://github.com/b3nk3/postcss-class-prefixer/issues"
67+
},
68+
"homepage": "https://github.com/b3nk3/postcss-class-prefixer#readme",
69+
70+
"_nodeVersion": "14.15.5",
71+
"_npmVersion": "6.14.11",
72+
"dist": {
73+
"integrity": "sha512-Gh7vahNFg1AS3Y/9P5TerpTdYfHhmtv5qJBOIIuE8e6L7pQiWLkFuHPUvkx5FICyNIUEVdm1JEASL2QB0HDr4w==",
74+
"shasum": "ad361bb2d0e34b146c67f88a922f8f02e48017ca",
75+
"tarball": "https://registry.npmjs.org/postcss-class-prefixer/-/postcss-class-prefixer-1.2.0.tgz",
76+
"fileCount": 5,
77+
"unpackedSize": 6316,
78+
"npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgLpcPCRA9TVsSAnZWagAAbXUP/19X+Nb8EaR98n6QuVU/\nsluskrTFxEmoP1iJNP+GmEQ1CWdDn8qHO1VH696hj+UcHDWqUw8n0SxA2l6F\nzQTgs5fmn6I2e4bwvhA3evqYNatvQVHERJfxTqN1mSJ2C2aa5yNfw4yEBSop\nP18w4IuqTbZfA88z6vv30v+LkIo4gipF/weIYhWuh09JxofwYccd9/s6F6uQ\nI+ANGOhgQOOkO3IqcfRGgYw1Wt/wyJ2y2656izzugLWanjIm3dBSLIndP44t\nTQhxvjvWg5nheLP7AcXG6ru/Ml20npAlL6xx9BJF1SJ2MIiDl1Tb2436nqRp\nZFAeY5782RVLcIJxjgMpGfCW4snd9f6zwhRHcOkei5UQxMmcAlRbpCb3Nb2W\n+x5v6dJ60kmNvtH2FFpaKtEI68BhMJQkLeeEAbTeFuyhVMJ16Q4zXE0SBFvv\nqjT6U2r2qXjnKnYzvhsoy6cPvX/FiqVaMQntDSvhPztFc/zN1LZ6F6/jFtEX\ni2w4C9CSpOssnxZzwGcUQ1iOGCrVqIJuXdGKoKqsIRgksC66KL984Ml0r8la\nztDcngMpTHWZp6EfrIHLyfyuQ7xJpZNbd9kCatkpH5mGELGHRkHmrrpOCPB7\nOLC0N1qyXm0IOy+98ofHtygLUJslFp42L+cRMIA8yY+W7f2KnRABD2xMWpUj\nswys\r\n=VUrs\r\n-----END PGP SIGNATURE-----\r\n",
79+
"signatures": [
80+
{
81+
"keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA",
82+
"sig": "MEYCIQDZqDsF/t8n2CpjC9TsH+1o0Rbg7HU8xcrjCGETGE3AywIhAM7tiHzpWexRU8V8lUrWG8H3xAD0ySC+QRFYfneJFrBD"
83+
}
84+
]
85+
},
86+
"_npmUser": {
87+
"name": "bencodes",
88+
"email": "[email protected]"
89+
},
90+
"directories": {},
91+
"maintainers": [
92+
{
93+
"name": "bencodes",
94+
"email": "[email protected]"
95+
}
96+
],
97+
"_npmOperationalInternal": {
98+
"host": "s3://npm-registry-packages",
99+
"tmp": "tmp/postcss-class-prefixer_1.2.0_1613666062750_0.7795110571156165"
100+
},
101+
"_hasShrinkwrap": false,
102+
"_time": "2021-02-18T16:34:22.889Z"
103+
}

0 commit comments

Comments
 (0)