-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
62 lines (62 loc) · 1.26 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
53
54
55
56
57
58
59
60
61
62
{
"name": "gulp-bootlint",
"version": "1.1.1",
"description": "A gulp wrapper for Bootlint, the HTML linter for Bootstrap projects",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/tschortsch/gulp-bootlint"
},
"author": {
"name": "Juerg Hunziker",
"email": "[email protected]",
"url": "https://juerghunziker.ch"
},
"engines": {
"node": ">=10"
},
"files": [
"index.js"
],
"scripts": {
"lint": "eslint *.js test/*.js",
"test": "mocha"
},
"keywords": [
"gulpplugin",
"bootlint",
"bootstrap",
"html",
"markup",
"code",
"style",
"validate",
"lint",
"check",
"checker"
],
"dependencies": {
"ansi-colors": "^4.1.1",
"bootlint": "^1.1.0",
"log": "^6.0.0",
"log-node": "^7.0.0",
"merge": "^2.1.1",
"plugin-error": "^1.0.1",
"through2": "^4.0.2"
},
"devDependencies": {
"eslint": "^7.26.0",
"eslint-config-gulp": "^5.0.1",
"mocha": "^8.4.0",
"should": "^13.2.3",
"vinyl": "^2.2.1"
},
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/tschortsch/gulp-bootlint/issues"
},
"homepage": "https://github.com/tschortsch/gulp-bootlint",
"jshintConfig": {
"node": true
}
}