puppeteer/packages/testserver/package.json

34 lines
666 B
JSON
Raw Normal View History

{
"name": "@pptr/testserver",
2022-10-05 14:51:59 +00:00
"version": "0.6.0",
"description": "testing server",
"main": "lib/index.js",
"scripts": {
2023-02-13 18:22:43 +00:00
"build": "wireit",
"clean": "../../tools/clean.js"
},
2023-02-13 18:22:43 +00:00
"wireit": {
"build": {
"command": "tsc -b",
"clean": "if-file-deleted",
"files": [
"src/**"
],
"output": [
"lib/**",
"tsconfig.tsbuildinfo"
]
}
},
"repository": {
"type": "git",
"url": "https://github.com/puppeteer/puppeteer/tree/main/packages/testserver"
},
"author": "The Chromium Authors",
"license": "Apache-2.0",
"dependencies": {
"mime": "3.0.0",
"ws": "8.14.2"
}
}