-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 979 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
38
39
40
41
42
43
44
45
46
47
48
{
"name": "posthtml-attrs-sorter",
"description": "The sorting attribute of the tag based on the given order",
"version": "1.1.0",
"author": {
"name": "Denis Malinochkin",
"url": "canonium.com"
},
"repository": "mrmlnc/posthtml-attrs-sorter",
"license": "MIT",
"keywords": [
"posthtml",
"html",
"posthtml-plugin",
"attrs",
"attributes",
"sorter",
"sort"
],
"devDependencies": {
"mocha": "^3.0.1",
"posthtml": "^0.9.0",
"xo": "^0.16.0"
},
"engines": {
"node": ">= 0.12.0"
},
"scripts": {
"test": "xo && mocha"
},
"files": [
"index.js"
],
"xo": {
"rules": {
"indent": [2, 2, { "SwitchCase": 1 }],
"arrow-parens": [2, "always"],
"object-curly-spacing": [2, "always"],
"babel/object-curly-spacing": 0,
"space-before-function-paren": [2, "never"],
"generator-star-spacing": [2, "after"]
},
"envs": [
"node",
"mocha"
]
}
}