forked from lesshint/lesshint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.55 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
71
{
"name": "lesshint",
"description": "A tool to aid you in writing clean and consistent Less.",
"version": "6.3.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": ">=6"
},
"dependencies": {
"commander": "^2.8.0",
"cosmiconfig": "^5.0.1",
"globby": "^8.0.0",
"lodash.merge": "^4.0.1",
"lodash.orderby": "^4.6.0",
"postcss": "^7.0.0",
"postcss-less": "^3.0.0",
"postcss-selector-parser": "^5.0.0",
"postcss-values-parser": "^2.0.0",
"strip-json-comments": "^2.0.0"
},
"devDependencies": {
"chai": "^4.0.1",
"coveralls": "^3.0.2",
"eslint": "^5.10.0",
"eslint-config-lesshint": "^1.0.3",
"mocha": "^5.2.0",
"nyc": "^12.0.1",
"rimraf": "^2.4.2",
"sinon": "^6.0.0"
},
"bin": {
"lesshint": "bin/lesshint"
},
"scripts": {
"coverage": "nyc report --reporter=text-lcov | coveralls",
"pretest": "eslint lib test",
"test": "nyc mocha \"test/specs/**/*.js\"",
"watch": "mocha --watch \"test/specs/**/*.js\""
},
"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"
]
}
}