mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
28e5cf0f0b
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
52 lines
1.1 KiB
JSON
52 lines
1.1 KiB
JSON
{
|
|
"name": "@puppeteer-test/installation",
|
|
"version": "latest",
|
|
"type": "module",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "wireit",
|
|
"build:packages": "wireit",
|
|
"clean": "tsc -b --clean && rm -rf build",
|
|
"test": "mocha"
|
|
},
|
|
"wireit": {
|
|
"build": {
|
|
"command": "tsc -b",
|
|
"clean": "if-file-deleted",
|
|
"dependencies": [
|
|
"build:packages"
|
|
],
|
|
"files": [
|
|
"tsconfig.json",
|
|
"src/**"
|
|
],
|
|
"output": [
|
|
"build/**",
|
|
"tsconfig.tsbuildinfo"
|
|
]
|
|
},
|
|
"build:packages": {
|
|
"command": "npm pack --quiet --workspace puppeteer --workspace puppeteer-core --workspace @puppeteer/browsers",
|
|
"dependencies": [
|
|
"../../packages/puppeteer:build",
|
|
"../../packages/puppeteer-core:build",
|
|
"../../packages/browsers:build"
|
|
],
|
|
"files": [],
|
|
"output": [
|
|
"puppeteer-*.tgz"
|
|
]
|
|
}
|
|
},
|
|
"files": [
|
|
".mocharc.cjs",
|
|
"puppeteer-*.tgz",
|
|
"build",
|
|
"assets"
|
|
],
|
|
"dependencies": {
|
|
"glob": "10.3.0",
|
|
"mocha": "10.2.0"
|
|
}
|
|
}
|