-
Notifications
You must be signed in to change notification settings - Fork 124
/
package.json
54 lines (54 loc) · 1.78 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
47
48
49
50
51
52
53
54
{
"name": "allure-js",
"version": "3.0.7",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn run clean && yarn run compile",
"clean": "yarn workspaces foreach -Avvt run clean",
"compile": "yarn workspaces foreach -Avvt run compile",
"lint": "yarn workspaces foreach -Avvt run lint",
"lint:fix": "yarn workspaces foreach -Avvt run lint:fix",
"prepare": "husky install",
"prettier:check": "prettier --check './packages/*/{src,test,features}/**/*.{mjs,cjs,js,ts}' 'package.json' 'packages/**/package.json' .prettierrc.js",
"prettier:format": "prettier --write './packages/*/{src,test,features}/**/*.{mjs,cjs,js,ts}' 'package.json' 'packages/**/package.json' .prettierrc.js",
"test": "yarn workspaces foreach -Avvt run test"
},
"lint-staged": {
"packages/*/{src,test,features}/**/*.{mjs,cjs,js,ts,tsx}": [
"prettier --write"
],
"**/package.json": [
"prettier --write"
],
".prettierrc.js": [
"prettier --write"
],
"plugin-ci-version.js": [
"prettier --write"
]
},
"devDependencies": {
"@stylistic/eslint-plugin": "^2.6.1",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/eslint": "^8.56.11",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^50.0.0",
"eslint-plugin-n": "^17.10.1",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"husky": "^9.0.0",
"lint-staged": "^15.0.0",
"prettier": "^3.2.5",
"prettier-plugin-packagejson": "^2.4.9",
"rimraf": "^6.0.0",
"typescript": "^5.2.2"
},
"packageManager": "yarn@4.5.1"
}