-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.12 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.12 KB
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
{
"name": "@firefoxic/bemlint",
"description": "CLI tool for linting HTML using BEM methodology.",
"version": "6.0.4",
"license": "MIT",
"author": {
"name": "Sergey Artemov",
"email": "firefoxic.dev@gmail.com"
},
"homepage": "https://github.com/firefoxic/bemlint#readme",
"bugs": {
"url": "https://github.com/firefoxic/bemlint/issues"
},
"repository": {
"type": "git",
"url": "git@github.com:firefoxic/bemlint.git"
},
"type": "module",
"bin": {
"bemlint": "./dist/bin/cli.js"
},
"exports": {
".": {
"import": "./dist/lib/bemlint.js",
"types": "./dist/lib/bemlint.d.ts"
}
},
"files": [
"./dist/"
],
"engines": {
"node": ">=22.18",
"pnpm": ">=10.30"
},
"dependencies": {
"parse5": "^8.0.0",
"parse5-htmlparser2-tree-adapter": "^8.0.0"
},
"scripts": {
"help": "make help"
},
"devDependencies": {
"@firefoxic/oxlint-config": "^0.3.1",
"@types/node": "^25.5.0",
"@vitest/coverage-v8": "^4.1.0",
"@vitest/ui": "4.1.0",
"oxlint": "^1.56.0",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
},
"keywords": [
"cli",
"html",
"bem",
"linter",
"bemlint"
]
}