-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.17 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
{
"name": "linthtml-config-htmlacademy",
"version": "2.0.0",
"description": "LintHTML Config for HTML Academy CODEGUIDE",
"keywords": [
"codeguide",
"config",
"htmlacademy",
"linter",
"linthtml"
],
"license": "MIT",
"author": {
"name": "HTML Academy",
"email": "mail@htmlacademy.dev",
"url": "https://htmlacademy.ru"
},
"repository": {
"type": "git",
"url": "git+https://github.com/htmlacademy/linthtml-config-htmlacademy.git"
},
"files": [
"linthtml.config.js"
],
"type": "module",
"exports": "./linthtml.config.js",
"scripts": {
"test": "npm run test:lint && npm run test:valid && npm run test:invalid",
"test:lint": "eslint .",
"test:valid": "linthtml \"test/valid/**/*.html\" --config linthtml.config.js",
"test:invalid": "node --test \"test/invalid/**/*.test.js\""
},
"dependencies": {
"linthtml-rules-htmlacademy": "^2.0.0"
},
"devDependencies": {
"@linthtml/linthtml": "^0.10.2",
"eslint": "^10.4.0",
"eslint-config-htmlacademy": "^11.0.0",
"globals": "^17.6.0"
},
"peerDependencies": {
"@linthtml/linthtml": ">=0.10.0"
},
"engines": {
"node": ">=24"
}
}