forked from allure-framework/allure-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.35 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
{
"name": "allure-js",
"private": true,
"version": "2.9.2",
"workspaces": [
"packages/*"
],
"scripts": {
"prepare": "husky install",
"prettier:format": "prettier --write './packages/*/{src,test,features}/**/*.{js,ts}'",
"prettier:check": "prettier --check './packages/*/{src,test,features}/**/*.{js,ts}'",
"clean": "yarn workspaces foreach -vpt run clean",
"compile": "yarn workspaces foreach -vpt run compile",
"lint": "yarn workspaces foreach -vpt run lint",
"lint:fix": "yarn workspaces foreach -vpt run lint:fix",
"test": "yarn workspaces foreach -vpt run test",
"test:node-14": "yarn workspaces foreach -vpt --exclude allure-js --exclude allure-hermione run test",
"build": "yarn run clean && yarn run compile"
},
"lint-staged": {
"*.ts": [
"prettier --write"
]
},
"devDependencies": {
"@types/eslint": "^8",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsdoc": "^46.6.0",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"prettier": "^3.0.3",
"rimraf": "^5.0.1",
"typescript": "^5.2.2"
},
"packageManager": "[email protected]"
}