forked from dx-groups/postcss-plugin-pxtorem
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1020 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1020 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
39
{
"name": "postcss-plugin-pxtorem",
"version": "0.0.1",
"description": "基于postcss-plugin-px2rem 实现的一个postcss插件,用来将css中的dpx 换算成px以及将px转换成rem.保留了postcss-plugin-px2rem的所有配置。",
"main": "index.js",
"scripts": {
"test": "mocha",
"test-rem": "mocha ./test/index-test.js"
},
"repository": {
"type": "git",
"url": "git@github.com:sunxhh/postcss-plugin-pxtorem.git"
},
"keywords": [
"postcss",
"dpx",
"px"
],
"author": {
"name": "sunxh",
"email": "997854244@qq.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/sunxhh/postcss-plugin-pxtorem/issues"
},
"homepage": "https://github.com/sunxhh/postcss-plugin-pxtorem#readme",
"devDependencies": {
"css-loader": "^0.28.11",
"postcss-loader": "^2.1.5",
"precss": "^3.1.2",
"style-loader": "^0.21.0",
"expect": "^23.0.0",
"mocha": "^5.2.0"
},
"dependencies": {
"postcss-plugin-pxtorem": "0.0.1"
}
}