-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 913 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 913 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "postcss-prefix-custom-properties",
"version": "0.1.0",
"description": "Prefix CSS custom properties (CSS variables) with PostCSS.",
"main": "src/index.js",
"type": "commonjs",
"exports": {
".": "./src/index.js"
},
"files": [
"src"
],
"scripts": {
"lint": "eslint .",
"example": "postcss example/input.css --config example/postcss.config.cjs --output example/dist/output.css",
"test": "npm run lint && npm run example && diff -u example/dist/output.css example/dist/output.expected.css"
},
"keywords": [
"postcss",
"postcss-plugin",
"css",
"prefix",
"custom-properties",
"css-variables"
],
"author": "Mark Otto",
"license": "MIT",
"dependencies": {
"postcss-value-parser": "^4.2.0"
},
"peerDependencies": {
"postcss": "^8.4.0"
},
"devDependencies": {
"eslint": "^9.39.1",
"postcss-cli": "^11.0.0"
}
}