forked from allure-framework/allure-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.41 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": "allure-js",
"private": true,
"version": "2.0.0-beta.225",
"workspaces": [
"packages/*"
],
"scripts": {
"prepare": "npx husky install",
"prettier:format": "prettier --write './packages/*/{src,test,features}/**/*.{js,ts}'",
"prettier:check": "prettier --check './packages/*/{src,test,features}/**/*.{js,ts}'",
"clean": "npm run clean --workspaces --if-present",
"compile": "npm run compile --workspace=packages/allure-js-commons && npm run compile --workspaces",
"lint": "npm run lint --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"build": "npm run clean && npm run compile"
},
"lint-staged": {
"*.ts": [
"prettier --write"
]
},
"devDependencies": {
"@types/glob": "^8.0.0",
"@types/node": "^14.6.0",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"allure-commandline": "^2.13.8",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsdoc": "^37.0.0",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"glob": "^8.0.3",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"prettier": "^2.3.2",
"replace-in-file": "^6.2.0",
"rimraf": "^3.0.2",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
}
}