forked from yeonjuan/html-eslint
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.54 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
{
"name": "@html-eslint/html-eslint",
"version": "0.0.0",
"private": true,
"license": "MIT",
"author": "yeonjuan",
"scripts": {
"test": "turbo run test",
"test:legacy": "turbo run test:legacy",
"test:integration": "turbo run test:integration",
"lint": "turbo run lint",
"format": "prettier --write .",
"dev": "turbo run dev",
"build": "turbo run build",
"publish": "lerna publish",
"publish:alpha": "lerna publish --dist-tag alpha",
"check:ts": "turbo run ts",
"check:format": "prettier --check .",
"check:spell": "cspell --config .cspell.json \"**/*.{js,ts,tsx,md,html}\" --quiet",
"check": "yarn test && yarn check:format && yarn check:spell && yarn check:ts",
"publish:website": "yarn workspace website deploy",
"prepare": "husky",
"new-rule": "node ./tools/add-new-rule.js",
"baseline": "node ./tools/base-line/generate-baseline.mjs"
},
"devDependencies": {
"@lerna-lite/cli": "^4.11.0",
"@lerna-lite/publish": "^4.11.1",
"@mdn/browser-compat-data": "^7.3.0",
"@types/jest": "^29.5.14",
"compute-baseline": "^0.3.1",
"cspell": "^8.0.0",
"eslint": "^9.39.2",
"eslint-plugin-jest": "^29.12.1",
"eslint-plugin-n": "^17.15.1",
"husky": "^9.1.4",
"jest": "^29.7.0",
"prettier": "^3.5.2",
"prettier-plugin-jsdoc": "^1.8.0",
"rimraf": "^6.0.1",
"turbo": "^2.5.3",
"typescript": "^5.8.3"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
"packageManager": "yarn@4.9.1",
"workspaces": [
"packages/**"
]
}