-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
46 lines (46 loc) · 1.27 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
{
"name": "@html-eslint/html-eslint",
"version": "0.4.0",
"description": "",
"main": "index.js",
"private": true,
"scripts": {
"test": "turbo run test",
"lint": "turbo run lint",
"format": "prettier --write .",
"dev": "turbo run dev",
"build": "turbo run build --no-cache --force",
"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"
},
"author": "yeonjuan",
"license": "MIT",
"devDependencies": {
"cspell": "^8.0.0",
"eslint": "^7.32.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-node": "^11.1.0",
"husky": "^9.1.4",
"jest": "^29.7.0",
"lerna": "^8.1.9",
"prettier": "^2.4.1",
"svgo": "^3",
"turbo": "^2.0.11",
"typescript": "^5.7.2"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0",
"npm": ">=7"
},
"packageManager": "[email protected]",
"workspaces": [
"packages/**"
]
}