forked from capricorn86/happy-dom
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.49 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
{
"name": "root",
"private": true,
"packageManager": "npm@10.9.2",
"workspaces": [
"packages/*",
"packages/@happy-dom/*",
"integration-test/*"
],
"scripts": {
"compile": "DO_NOT_TRACK=1 turbo run compile",
"watch": "DO_NOT_TRACK=1 turbo run watch --parallel",
"clean": "git clean -Xdfq",
"lint": "eslint --max-warnings 0 --cache --cache-location ./.turbo/eslint.turbo .",
"lint:fix": "eslint --max-warnings 0 --cache --cache-location ./.turbo/eslint.turbo --fix .",
"test": "DO_NOT_TRACK=1 turbo run test && turbo run test:circular-dependencies",
"test:watch": "DO_NOT_TRACK=1 turbo run test:watch --parallel",
"prepare": "husky"
},
"devDependencies": {
"@types/he": "^1.1.2",
"@types/node": ">=20.0.0",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"chalk": "^4.1.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.0.2",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^5.1.3",
"happy-conventional-commit": "^0.1.1",
"husky": "^9.0.6",
"prettier": "3.3.3",
"semver": "^7.3.5",
"turbo": "^2.5.4",
"typescript": "^5.8.3",
"vitest": "^4.0.16"
},
"happyLintChanged": {
"rules": [
{
"command": "eslint --max-warnings 0 --cache --cache-location ./.turbo/eslint.turbo --fix",
"regexp": "^[a-zA-Z0-9_].*\\.(cjs|mjs|js|jsx|ts|tsx|json)$"
}
]
},
"engines": {
"node": ">=20.0.0"
}
}