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
44
45
46
47
48
49
50
51
52
53
54
|
{
"name": "@puppeteer-test/installation",
"version": "latest",
"type": "module",
"private": true,
"scripts": {
"build": "wireit",
"build:packages": "wireit",
"clean": "tsc -b --clean && rm -rf build",
"test": "mocha"
},
"wireit": {
"build": {
"command": "tsc -b",
"clean": "if-file-deleted",
"dependencies": [
"build:packages"
],
"files": [
"tsconfig.json",
"src/**"
],
"output": [
"build/**",
"tsconfig.tsbuildinfo"
]
},
"build:packages": {
"command": "npm pack --quiet --workspace puppeteer --workspace puppeteer-core --workspace @puppeteer/browsers",
"dependencies": [
"../../packages/puppeteer:build",
"../../packages/puppeteer-core:build",
"../../packages/browsers:build"
],
"files": [],
"output": [
"puppeteer-*.tgz"
]
}
},
"files": [
".mocharc.cjs",
"puppeteer-*.tgz",
"build",
"assets"
],
"dependencies": {
"glob": "8.1.0",
"mocha": "10.2.0"
},
"devDependencies": {
"@types/glob": "8.1.0"
}
}
|