mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-14 13:45:36 +03:00
17 lines
529 B
JSON
17 lines
529 B
JSON
{
|
|
"name": "zip-bundle",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"scripts": {
|
|
"esbuild": "esbuild ./src/zipBundle.ts --bundle --outdir=../../lib --format=cjs --platform=node --target=ES2019",
|
|
"build": "npm ci && npm run esbuild -- --minify && npm run generate-license",
|
|
"watch": "npm ci && npm run esbuild -- --watch --sourcemap",
|
|
"generate-license": "node ../../../../utils/generate_third_party_notice.js"
|
|
},
|
|
"dependencies": {
|
|
"extract-zip": "2.0.1",
|
|
"yauzl": "2.10.0",
|
|
"yazl": "2.5.1"
|
|
}
|
|
}
|