-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
52 lines (52 loc) · 1.08 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
{
"name": "postcss-utilities",
"version": "0.8.4",
"description": "PostCSS plugin to add a collection of mixins, shortcuts, helpers and tools for your CSS",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"utility",
"library",
"collection",
"pack",
"helpers",
"mixins",
"shortcuts",
"hacks"
],
"author": "Ismael Martínez <[email protected]>",
"license": "MIT",
"repository": "ismamz/postcss-utilities",
"bugs": {
"url": "https://github.com/ismamz/postcss-utilities/issues"
},
"homepage": "https://github.com/ismamz/postcss-utilities",
"dependencies": {
"postcss": "^7.0.17",
"postcss-value-parser": "^4.0.0"
},
"devDependencies": {
"ava": "^2.2.0",
"eslint": ">=4.18.2",
"eslint-config-postcss": "^2.0.2",
"fs": "0.0.2"
},
"scripts": {
"test": "ava && eslint **/*.js"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2015
},
"extends": "postcss/es5",
"rules": {
"complexity": [
"error",
{
"max": 60
}
]
}
}
}