-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
37 lines (37 loc) · 1020 Bytes
/
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
{
"name": "postcss-increase-text-sizes",
"version": "1.1.0",
"description": "PostCSS Increase Text Sizes is PostCSS plugin that helps automaticaly increase text size and line height",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"increase font size",
"web accessibility"
],
"author": "Eduárd Pocstár <admdh.com@gmail.com>",
"license": "MIT",
"repository": "https://github.com/admdh/postcss-increase-text-sizes",
"bugs": {
"url": "https://github.com/admdh/postcss-increase-text-sizes/issues"
},
"homepage": "https://github.com/admdh/postcss-increase-text-sizes",
"dependencies": {
"object-assign": "4.1.1",
"parse-css-font": "4.0.0",
"postcss": "7.0.21",
"units-css": "0.4.0"
},
"devDependencies": {
"ava": "2.4.0",
"eslint": "6.6.0",
"eslint-config-postcss": "3.0.7"
},
"scripts": {
"lint": "eslint index.js",
"test": "ava && eslint test/test.js"
},
"eslintConfig": {
"extends": "eslint-config-postcss/es5"
}
}