-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.08 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.08 KB
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
39
40
41
42
43
44
45
46
47
48
49
{
"name": "postcss-unit-processor",
"version": "1.4.3",
"description": "PostCSS plugin to process CSS unit values via a custom function. Convert px to rem, px to vw, or apply any unit transformation.",
"main": "index.js",
"types": "index.d.ts",
"files": [
"index.js",
"index.d.ts",
"LICENSE",
"README.md"
],
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hex-ci/postcss-unit-processor.git"
},
"keywords": [
"postcss",
"postcss-plugin",
"css",
"unit",
"unit-conversion",
"px",
"rem",
"vw",
"px-to-rem",
"px-to-vw",
"responsive"
],
"author": "Hex",
"license": "MIT",
"bugs": {
"url": "https://github.com/hex-ci/postcss-unit-processor/issues"
},
"homepage": "https://github.com/hex-ci/postcss-unit-processor#readme",
"peerDependencies": {
"postcss": "^8.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.29.0",
"babel-jest": "^30.3.0",
"jest": "^30.3.0",
"postcss": "^8.5.8"
}
}