1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
{
"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.js"
},
"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"
}
}
|