forked from microsoft/create-playwright
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.24 KB
/
package.json
File metadata and controls
47 lines (47 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
46
47
{
"name": "@1xinternet/create-dxp-playwright",
"version": "1.17.135-9",
"description": "Getting started with writing end-to-end tests with Playwright.",
"repository": {
"type": "git",
"url": "git+https://github.com/1xINTERNET/create-dxp-playwright.git"
},
"homepage": "https://www.1xinternet.de",
"author": "1X Internet (building on Microsoft's create-playwright)",
"engines": {
"node": ">=18"
},
"main": "index.js",
"bin": {
"create-playwright": "index.js"
},
"license": "Apache-2.0",
"scripts": {
"build": "esbuild --bundle src/cli.ts --outfile=lib/index.js --platform=node --target=ES2019",
"watch": "npm run build -- --watch",
"test": "playwright test",
"prepublish": "npm run build"
},
"devDependencies": {
"@playwright/test": "^1.49.1",
"@types/ini": "^4.1.1",
"@types/node": "^18.19.33",
"ansi-colors": "^4.1.1",
"enquirer": "^2.3.6",
"esbuild": "^0.25.0",
"ini": "^4.1.3",
"typescript": "^5.4.5"
},
"bugs": {
"url": "https://github.com/Microsoft/create-playwright/issues"
},
"directories": {
"lib": "lib",
"test": "tests"
},
"dependencies": {
"playwright": "^1.49.1",
"playwright-core": "^1.49.1",
"undici-types": "^5.26.5"
}
}