-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.05 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-processor-order",
"version": "0.1.1",
"description": "PostCSS plugin for sorting processors passed to postcss",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"postcss-order",
"postcss-sort-processors"
],
"author": "Vitaliy Ribachenko <[email protected]>",
"license": "MIT",
"repository": "VitaliyR/postcss-processor-order",
"bugs": {
"url": "https://github.com/VitaliyR/postcss-processor-order/issues"
},
"homepage": "https://github.com/VitaliyR/postcss-processor-order",
"dependencies": {
"postcss": "^5.2.0"
},
"devDependencies": {
"ava": "^0.16.0",
"eslint": "^3.4.0",
"eslint-config-postcss": "^2.0.2"
},
"scripts": {
"test": "ava && eslint *.js"
},
"eslintConfig": {
"extends": "eslint-config-postcss/es5",
"rules": {
"indent": [
"error",
2
],
"space-before-function-paren": [
"error",
"never"
],
"max-len": [
"error",
100
],
"no-bitwise": [
0
]
}
}
}