This repository has been archived by the owner on Mar 31, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
90 lines (90 loc) · 2.36 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "lints",
"version": "18.2.1",
"description": "Lint all your JavaScript, CSS, HTML, Markdown and Dockerfiles with a single command",
"keywords": [
"lint",
"linter",
"static code analysis",
"analysis",
"analyser",
"checker",
"validation",
"validator",
"jslint",
"jshint",
"eslint",
"csslint",
"stylelint",
"htmlhint",
"w3cjs",
"bootlint",
"markdownlint",
"remark-lint",
"w3c",
"javascript",
"js",
"css",
"html",
"markdown",
"dockerfile",
"dockerfilelint"
],
"scripts": {
"lint": "./bin/lints",
"pretest": "npm run lint",
"test": "tap 'test/*.js' 'test/linters/**/*.js' --cov --jobs=4",
"posttest": "tap --coverage-report=text-summary && tap --coverage-report=html",
"tap": "tap"
},
"bin": {
"lints": "./bin/lints"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EvgenyOrekhov/lints.git"
},
"author": {
"name": "Evgeny Orekhov",
"url": "https://plus.google.com/+ЕвгенийОрехов"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/EvgenyOrekhov/lints/issues"
},
"homepage": "https://github.com/EvgenyOrekhov/lints#readme",
"dependencies": {
"bluebird": "^3.7.2",
"bootlint": "^1.0.0",
"chalk": "^3.0.0",
"csslint": "^1.0.5",
"dockerfilelint": "^1.5.0",
"eslint": "^6.8.0",
"globby": "^11.0.0",
"htmlhint": "^0.11.0",
"js-yaml": "^3.13.1",
"jshint": "^2.11.0",
"jslint-node": "^1.2.8",
"markdownlint": "^0.19.0",
"ramda": "^0.27.0",
"remark": "^11.0.2",
"remark-lint": "^6.0.6",
"remark-preset-lint-consistent": "^2.0.4",
"remark-preset-lint-recommended": "^3.0.4",
"stylelint": "^13.2.1",
"stylelint-config-standard": "^20.0.0",
"w3cjs": "^0.4.0",
"wordwrap": "^1.0.0"
},
"files": [
"bin/",
"src/"
],
"devDependencies": {
"ansi-styles": "^4.2.1",
"eslint-config-hardcore": "^10.2.0",
"nock": "^12.0.3",
"remark-lint-list-item-indent": "^1.0.5",
"tap": "^12.7.0"
}
}