forked from mrmlnc/grunt-puglint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 971 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
49
50
51
52
53
54
55
56
57
{
"name": "grunt-puglint",
"description": "Grunt plugin for pug-lint",
"version": "0.1.2",
"author": {
"name": "Denis Malinochkin",
"email": "[email protected]"
},
"repository": "mrmlnc/grunt-puglint",
"license": "MIT",
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"test": "xo && ava test/test.js"
},
"devDependencies": {
"ava": "^0.8.0",
"grunt": "~0.4.5",
"rcloader": "^0.1.4",
"xo": "^0.12.1"
},
"dependencies": {
"chalk": "^1.1.1",
"pug-lint": "^2.1.1",
"text-table": "^0.2.0"
},
"keywords": [
"gruntplugin",
"grunt",
"pug",
"pug lint",
"pug hint",
"jade",
"jade lint",
"jade hint",
"lint",
"hint"
],
"files": [
"tasks",
"lib"
],
"xo": {
"space": true,
"rules": {
"object-curly-spacing": [
2,
"always"
],
"space-before-function-paren": 0
},
"envs": [
"node"
]
}
}