-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.02 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.02 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
{
"name": "create-playwright",
"version": "1.17.140",
"description": "Getting started with writing end-to-end tests with Playwright.",
"repository": {
"type": "git",
"url": "git+https://github.com/microsoft/create-playwright.git"
},
"homepage": "https://playwright.dev",
"author": {
"name": "Microsoft Corporation"
},
"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",
"clean": "rm -rf lib",
"watch": "npm run build -- --watch",
"test": "playwright test",
"prepublish": "npm run build"
},
"devDependencies": {
"@playwright/test": "^1.59.0-alpha-1769819922000",
"@types/ini": "^4.1.1",
"@types/node": "^18.19.33",
"ansi-colors": "^4.1.1",
"commander": "^14.0.1",
"enquirer": "^2.3.6",
"esbuild": "^0.25.0",
"ini": "^4.1.3",
"typescript": "^5.4.5"
}
}