forked from lesshint/lesshint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.44 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
63
64
65
66
67
68
69
70
{
"name": "lesshint",
"description": "A tool to aid you in writing clean and consistent Less.",
"version": "4.5.0",
"main": "./lib/index.js",
"author": {
"name": "Jonathan Wilsson",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/lesshint/lesshint"
},
"keywords": [
"less",
"lint",
"hint"
],
"engines": {
"node": ">=4"
},
"dependencies": {
"commander": "^2.8.0",
"globby": "^7.0.0",
"lodash.merge": "^4.0.1",
"lodash.sortby": "^4.0.1",
"minimatch": "^3.0.2",
"postcss": "^6.0.0",
"postcss-less": "^1.1.3",
"postcss-selector-parser": "^3.0.0",
"postcss-values-parser": "^1.3.1",
"rcfinder": "^0.1.8",
"strip-json-comments": "^2.0.0"
},
"devDependencies": {
"chai": "^4.0.1",
"eslint-config-lesshint": "^1.0.3",
"gulp": "^3.9.0",
"gulp-coveralls": "^0.1.4",
"gulp-eslint": "^4.0.0",
"gulp-mocha": "^4.1.0",
"nyc": "^11.0.1",
"rimraf": "^2.4.2",
"sinon": "^4.0.0"
},
"bin": {
"lesshint": "bin/lesshint"
},
"scripts": {
"test": "nyc gulp"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/lesshint/lesshint/issues"
},
"nyc": {
"lines": 95,
"statements": 95,
"functions": 95,
"branches": 95,
"check-coverage": true,
"exclude": [
"gulpfile.js"
],
"reporter": [
"lcov",
"text-summary"
]
}
}