puppeteer/test/installation/package.json
2023-03-06 12:28:33 +01:00

57 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": "wireit"
},
"wireit": {
"test": {
"command": "mocha",
"dependencies": [
"build"
]
},
"build": {
"command": "tsc -b",
"clean": "if-file-deleted",
"dependencies": [
"build:packages"
],
"files": [
"tsconfig.json",
"src/**"
],
"output": [
"build/**",
"tsconfig.tsbuildinfo"
]
},
"build:packages": {
"command": "npm pack --workspace puppeteer --workspace puppeteer-core",
"dependencies": [
"../../packages/puppeteer:build",
"../../packages/puppeteer-core:build"
],
"files": [],
"output": [
"puppeteer-*.tgz"
]
}
},
"files": [
".mocharc.cjs",
"puppeteer-*.tgz",
"build",
"assets"
],
"dependencies": {
"glob": "9.2.1",
"mocha": "10.2.0"
}
}