-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.24 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.24 KB
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
{
"name": "playwrong",
"version": "1.1.0",
"description": "A satirical library to make every playwright test fail.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "playwright test",
"lint": "eslint . --config eslint.config.js",
"lint-fix": "eslint . --fix --config eslint.config.js",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/ddnetters/playwrong.git"
},
"author": "Your Name",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.39.2",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.3.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0"
},
"dependencies": {
"@playwright/test": "^1.58.1",
"@types/node": "^25.2.0",
"ts-node": "^10.9.2"
},
"keywords": [
"npm",
"testing",
"joke",
"satire",
"playwright",
"playwrong"
],
"type": "module"
}