-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.15 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
{
"name": "postcss-fontsize",
"version": "0.1.0",
"description": "This PostCSS plugin generates REM based font-size and line-height for every fontsize declaration. The line-height will be 1.5 times the fontsize value. A fallback pixel based font-size and line-height is also generated.",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"font-size",
"line-height",
"font",
"px",
"rem"
],
"author": "Rich Bachman <[email protected]>",
"license": "MIT",
"repository": "richbachman/postcss-fontsize",
"bugs": {
"url": "https://github.com/richbachman/postcss-fontsize/issues"
},
"homepage": "https://github.com/richbachman/postcss-fontsize",
"dependencies": {
"postcss": "^6.0.16"
},
"devDependencies": {
"eslint": "^4.18.2",
"eslint-config-postcss": "^2.0.2",
"jest": "^22.4.2"
},
"scripts": {
"test": "jest && eslint *.js"
},
"eslintConfig": {
"extends": "eslint-config-postcss/es5",
"env": {
"jest": true
},
"rules": {
"max-len": [
"error",
{
"code": 100
}
]
}
},
"jest": {
"testEnvironment": "node"
}
}