2023-09-22 08:58:14 +00:00
|
|
|
{
|
|
|
|
"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"
|
2023-10-24 08:07:35 +00:00
|
|
|
],
|
|
|
|
"dependencies": [
|
|
|
|
"../../packages/puppeteer-core:build"
|
2023-09-22 08:58:14 +00:00
|
|
|
]
|
|
|
|
},
|
|
|
|
"test": {
|
|
|
|
"command": "c8 node ./bin/test.js",
|
|
|
|
"dependencies": [
|
|
|
|
"build"
|
|
|
|
]
|
|
|
|
}
|
2023-10-11 17:21:50 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"puppeteer-core": "file:../../packages/puppeteer-core"
|
2023-09-22 08:58:14 +00:00
|
|
|
}
|
|
|
|
}
|