puppeteer/tools/mocha-runner/package.json
2024-01-31 16:01:27 +01:00

44 lines
891 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 && chmod +x ./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": "9.1.0",
"glob": "10.3.10",
"yargs": "17.7.2",
"zod": "3.22.4"
}
}