-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
83 lines (83 loc) · 2.42 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@alex_neo/playwright-azure-reporter",
"version": "1.12.0",
"description": "Playwright Azure Reporter",
"main": "./dist/playwright-azure-reporter.js",
"types": "./dist/playwright-azure-reporter.d.js",
"scripts": {
"test": "npx playwright test",
"test:reporter": "npx playwright test -c tests/reporter/playwright.config.ts",
"lint": "tsc --noEmit --skipLibCheck --pretty && eslint --ext .ts .",
"lint:fix": "eslint src/** tests/** --ext .ts --fix",
"format": "prettier --write src/**/*.ts tests/**/*.ts",
"build": "yarn run clean && yarn run dev",
"clean": "rm -rf dist || true",
"prepublishOnly": "tsc",
"dev": "yarn run lint && tsc",
"dev:watch": "nodemon",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"release": "conventional-github-releaser -p angular",
"prepare": "husky install"
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": "ts",
"ignore": [
"**/test/**",
"**/docs/**",
"**/dist/**",
"**/node_modules/**"
],
"delay": 2500,
"exec": "yarn run build"
},
"keywords": [
"playwright",
"azure",
"reporter"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"author": {
"name": "Oleksii Galagan",
"email": "alexneo2003@gmail.com",
"url": "https://github.com/alexneo2003/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexneo2003/playwright-azure-reporter.git"
},
"license": "ISC",
"dependencies": {
"azure-devops-node-api": "^14.0.2",
"azure-pipelines-task-lib": "^4.15.0",
"chalk": "4.1.2",
"debug": "^4.3.4",
"dotenv": "^16.4.5",
"mime": "^3.0.0"
},
"devDependencies": {
"@playwright/test": "^1.44.1",
"@types/debug": "^4.1.7",
"@types/mime": "^3.0.1",
"@types/node": "^20.11.25",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/eslint-plugin-tslint": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.37.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^40.1.1",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^8.0.3",
"prettier": "^2.8.7",
"socksv5": "^0.0.6",
"typescript": "^5.0.3"
}
}