-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
45 lines (45 loc) · 909 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
{
"name": "grunt-htmlhint-plus",
"version": "0.6.0",
"description": "Grunt task to hint html code.",
"main": "tasks/htmlhintplus.js",
"repository": {
"type": "git",
"url": "https://github.com/poppinlp/grunt-htmlhint-plus"
},
"bugs": {
"url": "https://github.com/poppinlp/grunt-htmlhint-plus/issues"
},
"author": "PoppinL <poppinlp@gmail.com>",
"license": "MIT",
"readmeFilename": "README.md",
"engines": {
"node": ">= 6"
},
"keywords": [
"gruntplugin",
"html",
"hint",
"htmlhint",
"template"
],
"scripts": {
"test": "grunt test"
},
"peerDependencies": {
"grunt": ">=0.4.0"
},
"dependencies": {
"checkstyle-formatter": "^1.1.0",
"file-changed": "^1.4.1",
"htmlhint": "^0.10.3",
"lodash": "^4.17.15"
},
"devDependencies": {
"eslint": "^6.8.0",
"grunt": ">=0.4.0"
},
"files": [
"tasks"
]
}