-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
48 lines (48 loc) · 996 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": "gulp-lesshint",
"version": "6.1.0",
"description": "Lint your .less files from Gulp with lesshint.",
"main": "index.js",
"author": {
"name": "Jonathan Wilsson",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/lesshint/gulp-lesshint.git"
},
"scripts": {
"pretest": "eslint **/*.js",
"test": "mocha"
},
"keywords": [
"gulp",
"gulpplugin",
"less",
"lesshint",
"lint",
"linter"
],
"files": [
"index.js",
"utils.js"
],
"dependencies": {
"lesshint": "^6.0.0",
"lesshint-reporter-stylish": "^3.0.0",
"minimatch": "^3.0.4",
"plugin-error": "^1.0.0",
"through2": "^3.0.0"
},
"devDependencies": {
"eslint": "^5.0.0",
"eslint-config-lesshint": "^1.0.3",
"mocha": "^6.0.0",
"sinon": "^7.2.2",
"vinyl": "^2.1.0"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/lesshint/gulp-lesshint/issues"
}
}