2022-10-14 11:37:07 +00:00
|
|
|
{
|
|
|
|
"name": "@puppeteer-test/installation",
|
|
|
|
"version": "latest",
|
|
|
|
"type": "module",
|
|
|
|
"private": true,
|
|
|
|
"scripts": {
|
|
|
|
"build": "wireit",
|
2023-09-19 10:51:09 +00:00
|
|
|
"clean": "../../tools/clean.js",
|
2023-03-06 12:43:37 +00:00
|
|
|
"test": "mocha"
|
2022-10-14 11:37:07 +00:00
|
|
|
},
|
|
|
|
"wireit": {
|
|
|
|
"build": {
|
|
|
|
"command": "tsc -b",
|
|
|
|
"clean": "if-file-deleted",
|
|
|
|
"dependencies": [
|
|
|
|
"build:packages"
|
|
|
|
],
|
|
|
|
"files": [
|
|
|
|
"tsconfig.json",
|
|
|
|
"src/**"
|
|
|
|
],
|
|
|
|
"output": [
|
|
|
|
"build/**",
|
|
|
|
"tsconfig.tsbuildinfo"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"build:packages": {
|
2023-04-05 16:06:33 +00:00
|
|
|
"command": "npm pack --quiet --workspace puppeteer --workspace puppeteer-core --workspace @puppeteer/browsers",
|
2022-10-14 11:37:07 +00:00
|
|
|
"dependencies": [
|
|
|
|
"../../packages/puppeteer:build",
|
2023-03-28 09:27:50 +00:00
|
|
|
"../../packages/puppeteer-core:build",
|
|
|
|
"../../packages/browsers:build"
|
2022-10-14 11:37:07 +00:00
|
|
|
],
|
|
|
|
"files": [],
|
|
|
|
"output": [
|
|
|
|
"puppeteer-*.tgz"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
".mocharc.cjs",
|
|
|
|
"puppeteer-*.tgz",
|
|
|
|
"build",
|
|
|
|
"assets"
|
|
|
|
],
|
|
|
|
"dependencies": {
|
2023-09-27 12:06:48 +00:00
|
|
|
"glob": "10.3.10",
|
2023-03-06 11:28:33 +00:00
|
|
|
"mocha": "10.2.0"
|
2022-10-14 11:37:07 +00:00
|
|
|
}
|
|
|
|
}
|