puppeteer/tools/mocha-runner/package.json
dependabot[bot] 97451731da
chore(deps-dev): Bump the dev-dependencies group across 1 directory with 4 updates (#12565)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-06-10 16:50:55 +00:00

44 lines
911 B
JSON

{
"name": "@puppeteer/mocha-runner",
"version": "0.1.0",
"type": "commonjs",
"private": true,
"bin": "./bin/mocha-runner.js",
"description": "Mocha runner for Puppeteer",
"license": "Apache-2.0",
"scripts": {
"build": "wireit",
"test": "wireit",
"clean": "../clean.mjs"
},
"wireit": {
"build": {
"command": "tsc -b && tsx ../../tools/chmod.ts 755 ./bin/mocha-runner.js",
"clean": "if-file-deleted",
"files": [
"src/**"
],
"output": [
"bin/**",
"tsconfig.tsbuildinfo"
],
"dependencies": [
"../../packages/puppeteer-core:build"
]
},
"test": {
"command": "c8 node ./bin/test.js",
"dependencies": [
"build"
]
}
},
"devDependencies": {
"@types/yargs": "17.0.32",
"c8": "10.0.0",
"glob": "10.4.1",
"yargs": "17.7.2",
"zod": "3.23.8"
}
}