forked from microsoft/playwright-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 714 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 714 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "driver",
"private": true,
"version": "0.0.1",
"description": "Playwright driver",
"bin": "main.js",
"scripts": {
"bake-darwin": "pkg --public --targets node12-macos-x64 --output=out/driver-darwin .",
"bake-win32": "pkg --public --targets node12-win-x86 --output=out/driver-win32.exe .",
"bake-win32-amd64": "pkg --public --targets node12-win-x64 --output=out/driver-win32-amd64.exe .",
"bake-linux": "pkg --public --targets node12-linux-x64 --output=out/driver-linux ."
},
"keywords": [],
"author": {
"name": "Microsoft Corporation"
},
"license": "Apache-2.0",
"dependencies": {
"playwright": "1.4.2"
},
"devDependencies": {
"pkg": "^4.4.9"
}
}