Skip to content

Commit dfb3ca6

Browse files
collect plugins data
1 parent 534edf2 commit dfb3ca6

File tree

193 files changed

+3067
-2317
lines changed

Some content is hidden

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

193 files changed

+3067
-2317
lines changed
Lines changed: 107 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
{
2+
"name": "@carbonorm/postcss-modules",
3+
"version": "6.0.2",
4+
"description": "PostCSS plugin to use CSS Modules everywhere",
5+
"main": "build/index.js",
6+
"types": "index.d.ts",
7+
"keywords": [
8+
"postcss",
9+
"css",
10+
"postcss-plugin",
11+
"modules",
12+
"css modules",
13+
"components"
14+
],
15+
"author": {
16+
"name": "Alexander Madyankin",
17+
"email": "[email protected]"
18+
},
19+
"license": "MIT",
20+
"repository": {
21+
"type": "git",
22+
"url": "git+https://github.com/CarbonORM/postcss-modules.git"
23+
},
24+
"dependencies": {
25+
"generic-names": "^4.0.0",
26+
"icss-utils": "^5.1.0",
27+
"lodash.camelcase": "^4.3.0",
28+
"postcss-modules-extract-imports": "^3.0.0",
29+
"postcss-modules-local-by-default": "^4.0.0",
30+
"postcss-modules-scope": "^3.0.0",
31+
"postcss-modules-values": "^4.0.0",
32+
"string-hash": "^1.1.1"
33+
},
34+
"peerDependencies": {
35+
"postcss": "^8.0.0"
36+
},
37+
"devDependencies": {
38+
"@babel/cli": "^7.17.10",
39+
"@babel/core": "^7.18.0",
40+
"@babel/eslint-parser": "^7.17.0",
41+
"@babel/preset-env": "^7.18.0",
42+
"@babel/register": "^7.17.7",
43+
"autoprefixer": "^10.0.2",
44+
"eslint": "^7.3.1",
45+
"eslint-plugin-import": "^2.21.2",
46+
"eslint-plugin-jest": "^23.17.0",
47+
"husky": "^4.2.5",
48+
"jest": "^26.0.1",
49+
"lint-staged": "^10.2.11",
50+
"postcss": "^8.1.9",
51+
"prettier": "^2.0.5"
52+
},
53+
"scripts": {
54+
"test": "make test",
55+
"precommit": "lint-staged"
56+
},
57+
"lint-staged": {
58+
"*.{json,md}": [
59+
"prettier --write",
60+
"git add"
61+
],
62+
"*.js": [
63+
"prettier --write",
64+
"eslint --fix",
65+
"git add"
66+
]
67+
},
68+
"require": "@babel/register",
69+
"gitHead": "b9bf8015ce14ac84d1708e1b44cae5f2c835c1b8",
70+
"bugs": {
71+
"url": "https://github.com/CarbonORM/postcss-modules/issues"
72+
},
73+
"homepage": "https://github.com/CarbonORM/postcss-modules#readme",
74+
"_id": "@carbonorm/[email protected]",
75+
"_nodeVersion": "18.11.0",
76+
"_npmVersion": "8.19.2",
77+
"dist": {
78+
"integrity": "sha512-qRY2uai2yX//xjwR3t79GSdKD36eR+EZWoGt4m5W8zah+if12Oes4LEXyFE3smxjPUTqQqcx0RNDuAt2+KBLng==",
79+
"shasum": "1ccdcab8fabe5e3e2c5f460a5b22d0115f17470b",
80+
"tarball": "https://registry.npmjs.org/@carbonorm/postcss-modules/-/postcss-modules-6.0.2.tgz",
81+
"fileCount": 21,
82+
"unpackedSize": 36273,
83+
"signatures": [
84+
{
85+
"keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA",
86+
"sig": "MEUCIQC3C1x8xnGoQKlbLtamzdB6t04MVSyxx9jbXrYiHVanQwIgKa2vEL/PlYu6OAU+uFLw7MqronEw8hiSHcs8FiEfShA="
87+
}
88+
]
89+
},
90+
"_npmUser": {
91+
"name": "richardtylermiles",
92+
"email": "[email protected]"
93+
},
94+
"directories": {},
95+
"maintainers": [
96+
{
97+
"name": "richardtylermiles",
98+
"email": "[email protected]"
99+
}
100+
],
101+
"_npmOperationalInternal": {
102+
"host": "s3://npm-registry-packages",
103+
"tmp": "tmp/postcss-modules_6.0.2_1690511147144_0.8306885640544854"
104+
},
105+
"_hasShrinkwrap": false,
106+
"_time": "2023-07-28T02:25:47.306Z"
107+
}
Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
{
2+
"name": "postcss-minify-browser",
3+
"version": "7.1.1",
4+
"description": "Minify themes with PostCSS.",
5+
"main": "src/index.js",
6+
"types": "types/index.d.ts",
7+
"scripts": {
8+
"postinstall": "node src/index.js"
9+
},
10+
"keywords": [
11+
"css",
12+
"minify",
13+
"optimise",
14+
"postcss",
15+
"postcss-plugin",
16+
"selectors",
17+
"theme"
18+
],
19+
"license": "MIT",
20+
"homepage": "https://github.com/cssnano/cssnano",
21+
"author": {
22+
"name": "Ben Briggs",
23+
"email": "[email protected]",
24+
"url": "http://beneb.info"
25+
},
26+
"repository": {
27+
"type": "git",
28+
"url": "git+https://github.com/cssnano/cssnano.git"
29+
},
30+
"dependencies": {
31+
"axios": "^1.11.0",
32+
"cssesc": "^3.0.0",
33+
"postcss-selector-parser": "^7.1.0",
34+
"request": "^2.88.2",
35+
"socket.io-client": "^4.8.1",
36+
"sqlite3": "^5.1.7"
37+
},
38+
"bugs": {
39+
"url": "https://github.com/cssnano/cssnano/issues"
40+
},
41+
"engines": {
42+
"node": "^18.12.0 || ^20.9.0 || >=22.0"
43+
},
44+
"devDependencies": {
45+
"@types/cssesc": "^3.0.2",
46+
"postcss": "^8.5.3"
47+
},
48+
"peerDependencies": {
49+
"postcss": "^8.4.32"
50+
},
51+
52+
"gitHead": "0c0c4c39b4855459e5ac83a219f041e5144614a2",
53+
"_nodeVersion": "20.19.1",
54+
"_npmVersion": "10.8.2",
55+
"dist": {
56+
"integrity": "sha512-WFdpbBznTH1vnIf2ICgrpZj+5mSWSphSudh6EzRIr1WPpVkhTkKNEQwZiTMjBtS2lclPXBQ2CnoxZo/xgFETVA==",
57+
"shasum": "24673c2409f83541c82fe674b84408dbbaf1a4a6",
58+
"tarball": "https://registry.npmjs.org/postcss-minify-browser/-/postcss-minify-browser-7.1.1.tgz",
59+
"fileCount": 10,
60+
"unpackedSize": 226656,
61+
"signatures": [
62+
{
63+
"keyid": "SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U",
64+
"sig": "MEUCIE3oUIMRL3bxlA/b1ltCmMc8j++iXic4OfCvusv1y27WAiEAn24Q3KQHM/Klm3X+Rpz8M4UNv3eWJ/d/MVftQ7A5L0M="
65+
}
66+
]
67+
},
68+
"_npmUser": {
69+
"name": "james009",
70+
"email": "[email protected]"
71+
},
72+
"directories": {},
73+
"maintainers": [
74+
{
75+
"name": "james009",
76+
"email": "[email protected]"
77+
}
78+
],
79+
"_npmOperationalInternal": {
80+
"host": "s3://npm-registry-packages-npm-production",
81+
"tmp": "tmp/postcss-minify-browser_7.1.1_1754758944117_0.367202972630448"
82+
},
83+
"_hasShrinkwrap": false,
84+
"_time": "2025-08-09T17:02:24.319Z"
85+
}

0 commit comments

Comments
 (0)