-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 855 Bytes
/
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
{
"name": "create-playwright",
"version": "1.17.129",
"description": "Getting started with writing end-to-end tests with Playwright.",
"repository": "github:Microsoft/playwright",
"homepage": "https://playwright.dev",
"author": {
"name": "Microsoft Corporation"
},
"engines": {
"node": ">=12"
},
"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.30.0",
"@types/node": "^16.11.11",
"ansi-colors": "^4.1.1",
"enquirer": "^2.3.6",
"esbuild": "^0.14.25",
"typescript": "^4.5.2"
}
}