-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.16 KB
/
package.json
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
50
51
52
53
54
{
"name": "stylelint-rem-over-px",
"version": "1.0.2",
"description": "A stylelint rule to enforce the usage of rem units over px units.",
"main": "index.js",
"files": [
"index.js"
],
"repository": {
"type": "git",
"url": "https://github.com/a-tokyo/stylelint-rem-over-px.git"
},
"author": {
"name": "Ahmed Tarek",
"email": "ahmed.tokyo1@gmail.com",
"url": "https://github.com/A-Tokyo"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/a-tokyo/stylelint-rem-over-px/issues"
},
"homepage": "https://github.com/a-tokyo/stylelint-rem-over-px",
"scripts": {
"test": "tape __tests__"
},
"dependencies": {
"postcss-value-parser": "^3.3.0 || ^4.0.2"
},
"devDependencies": {
"stylelint": "^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0",
"stylelint-test-rule-tape": "^0.2.0",
"tape": "^4.7.0"
},
"peerDependencies": {
"stylelint": ">= 8"
},
"keywords": [
"stylelint",
"stylelint-plugin",
"rem",
"pixels",
"px",
"css",
"scss",
"sass",
"less",
"fix",
"autofix",
"migrate",
"migration",
"migrate-px-to-rem",
"replace-px-with-rem"
]
}