package.json (940B)
1 { 2 "name": "@puppeteer/mocha-runner", 3 "version": "0.1.0", 4 "type": "commonjs", 5 "private": true, 6 "bin": "./bin/mocha-runner.js", 7 "description": "Mocha runner for Puppeteer", 8 "license": "Apache-2.0", 9 "scripts": { 10 "build": "wireit", 11 "test": "wireit", 12 "clean": "../clean.mjs" 13 }, 14 "wireit": { 15 "build": { 16 "command": "tsc -b && node --experimental-strip-types ../../tools/chmod.ts 755 ./bin/mocha-runner.js", 17 "clean": "if-file-deleted", 18 "files": [ 19 "src/**" 20 ], 21 "output": [ 22 "bin/**", 23 "tsconfig.tsbuildinfo" 24 ], 25 "dependencies": [ 26 "../../packages/puppeteer-core:build" 27 ] 28 }, 29 "test": { 30 "command": "c8 node ./bin/test.js", 31 "dependencies": [ 32 "build" 33 ] 34 } 35 }, 36 "devDependencies": { 37 "@types/yargs": "17.0.33", 38 "c8": "10.1.3", 39 "glob": "10.4.5", 40 "yargs": "17.7.2", 41 "zod": "3.25.28" 42 } 43 }