-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.16 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.16 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
{
"name": "postcss-fixes",
"version": "3.0.0",
"type": "commonjs",
"description": "PostCSS plugin pack to fix known Browser Bugs.",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"browserbugs",
"bugfixes"
],
"author": "Matthias Müller <MattDiMu@users.noreply.github.com>",
"license": "MIT",
"repository": "MattDiMu/postcss-fixes",
"bugs": {
"url": "https://github.com/MattDiMu/postcss-fixes/issues"
},
"homepage": "https://github.com/MattDiMu/postcss-fixes",
"dependencies": {
"lodash": "^4.17.21",
"pixrem": "^3.0.2",
"postcss": "^6.0.23",
"postcss-calc": "^6.0.2",
"postcss-flexbugs-fixes": "^3.3.1",
"postcss-nth-child-fix": "^2.0.0",
"postcss-pseudoelements": "^3.0.0",
"postcss-unopacity": "^1.0.1",
"postcss-unroot": "^1.0.2",
"postcss-vmin": "^3.0.0"
},
"devDependencies": {
"ava": "^3.15.0",
"eslint": "^3.19.0",
"eslint-config-postcss": "^2.0.2"
},
"scripts": {
"test": "ava && eslint *.js",
"test:ava": "ava",
"test:eslint": "eslint *.js"
},
"eslintConfig": {
"extends": "eslint-config-postcss/es5",
"rules": {
"max-len": 0
}
}
}