forked from pugjs/pug-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
174 lines (174 loc) · 3.97 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
{
"name": "@ladjs/pug-lint",
"description": "An unopinionated and configurable linter and style checker for Pug (formerly Jade)",
"version": "2.6.1",
"author": "Ben Edwards <hello@benedfit.com>",
"bin": {
"pug-lint": "./bin/pug-lint"
},
"bugs": {
"url": "https://github.com/ladjs/pug-lint/issues",
"email": "niftylettuce@gmail.com"
},
"dependencies": {
"acorn": "^4.0.1",
"commander": "^2.9.0",
"css-selector-parser": "^1.1.0",
"find-line-column": "^0.5.2",
"glob": "^7.0.3",
"minimatch": "^3.0.3",
"path-is-absolute": "^1.0.0",
"pug-attrs": "^2.0.4",
"pug-error": "^1.3.3",
"pug-lexer": "^4.1.0",
"resolve": "^1.1.7",
"strip-json-comments": "^2.0.1",
"void-elements": "^2.0.1"
},
"devDependencies": {
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"ava": "latest",
"camel-case": "^3.0.0",
"changelog": "^1.0.7",
"codecov": "latest",
"david": "^7.0.0",
"docco": "^0.7.0",
"eslint": "^8.4.1",
"eslint-config-xo-lass": "^1.0.6",
"eslint-plugin-compat": "^4.0.0",
"eslint-plugin-node": "^11.1.0",
"fixpack": "latest",
"husky": "latest",
"istanbul": "^0.4.0",
"jsinspect": "^0.8.0",
"lint-staged": "latest",
"mocha": "^2.3.3",
"moment": "^2.11.2",
"no-case": "^2.3.0",
"nyc": "latest",
"pliers": "^1.2.1",
"prettier": "^2.5.1",
"pug-lint-config-clock": "^1.1.0",
"remark-cli": "^10.0.1",
"remark-preset-github": "^4.0.1",
"rimraf": "^2.5.2",
"semver-regex": "^1.0.0",
"sinon": "^1.17.2",
"xo": "^0.47.0",
"yeoman-generator": "^0.23.3",
"yo": "^1.8.4"
},
"engines": {
"node": ">= 12"
},
"homepage": "https://github.com/ladjs/pug-lint",
"keywords": [
"code style",
"formatter",
"hint",
"hint jade",
"hint pug",
"hinter",
"hinter jade",
"hinter pug",
"hinting",
"hinting jade",
"hinting pug",
"jade",
"jade hint",
"jade hinter",
"jade hinting",
"jade lint",
"jade linter",
"jade linting",
"jade-hint",
"jade-hinter",
"jade-hinting",
"jade-lint",
"jade-linter",
"jade-linting",
"jadelint",
"lad",
"ladjs",
"lass",
"lassjs",
"lint",
"lint jade",
"lint pug",
"linter",
"linter jade",
"linter pug",
"linting",
"linting jade",
"linting pug",
"pug",
"pug hint",
"pug hinter",
"pug hinting",
"pug lint",
"pug linter",
"pug linting",
"pug-hint",
"pug-hinter",
"pug-hinting",
"pug-lint",
"pug-linter",
"pug-linting",
"puglint",
"style guide",
"validate"
],
"license": "ISC",
"main": "./lib/linter",
"publishConfig": {
"access": "public",
"registry": "http://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "git@github.com:ladjs/pug-lint.git"
},
"scripts": {
"changelog": "pliers buildChangelog",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha test",
"depcheck": "david",
"docs": "pliers buildRuleDocs",
"inspect": "jsinspect",
"lint": "yarn run lint:js && yarn run lint:md",
"lint:js": "xo",
"lint:md": "remark . -qfo",
"posttest": "(istanbul check-coverage --statements 90 --branches 90 --functions 100 --lines 90 && rimraf coverage) || echo Look at 'coverage/lcov-report/index.html' to find out more",
"prepare": "husky install",
"pretest": "yarn run docs && yarn run schema && yarn run lint",
"schema": "pliers buildJsonSchema",
"test": "yarn run coverage"
},
"xo": {
"prettier": true,
"space": true,
"extends": [
"xo-lass"
],
"envs": [
"node",
"mocha"
],
"ignores": [
"generators/*-templates/**"
],
"rules": {
"capitalized-comments": "off"
},
"overrides": [
{
"files": [
"test/**/*.js"
],
"rules": {
"no-template-curly-in-string": "off"
}
}
]
}
}