-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
92 lines (92 loc) · 2.5 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
84
85
86
87
88
89
90
91
92
{
"name": "@pixelfactory/playwright-server",
"version": "1.4.1",
"homepage": "https://github.com/pixelfactoryio/playwright-server",
"description": "playwright Server Docker image",
"author": "Amine Benseddik <amine@pixelfactory.io>",
"keywords": [
"cli",
"headless"
],
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/pixelfactoryio/playwright-server.git"
},
"readme": "https://github.com/pixelfactoryio/playwright-server#readme",
"bugs": {
"url": "https://github.com/pixelfactoryio/playwright-server/issues"
},
"license": "MIT",
"scripts": {
"lint": "eslint src",
"lintfix": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"dev": "nodemon",
"clean": "rimraf dist",
"build": "npm run clean && npm run build:tsc",
"build:tsc": "tsc -p .",
"semantic-release": "semantic-release --ci",
"start": "node dist/index.js",
"prepare": "husky"
},
"dependencies": {
"@elastic/ecs-winston-format": "^1.5.3",
"http-proxy": "^1.18.1",
"playwright": "^1.49.1",
"winston": "^3.17.0"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.16.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.1",
"@types/http-proxy": "^1.17.15",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"commitlint": "^19.6.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.13.0",
"husky": "^9.1.7",
"nodemon": "^3.1.7",
"prettier": "3.4.2",
"rimraf": "^6.0.1",
"semantic-release": "^24.2.0",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"commit-msg": "yarn commitlint --edit $1"
}
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
[
"@semantic-release/git",
{
"assets": [
"package.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version}\n\n${nextRelease.notes}"
}
]
]
}
}