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
|
{
"name": "@puppeteer/eslint",
"version": "0.1.0",
"private": true,
"type": "commonjs",
"repository": {
"type": "git",
"url": "https://github.com/puppeteer/puppeteer/tree/main/tools/eslint"
},
"scripts": {
"build": "wireit",
"prepare": "wireit"
},
"wireit": {
"build": {
"command": "tsc -b",
"clean": "if-file-deleted",
"files": [
"src/**"
],
"output": [
"lib/**",
"tsconfig.tsbuildinfo"
]
},
"prepare": {
"dependencies": [
"build"
]
}
},
"author": "The Chromium Authors",
"license": "Apache-2.0",
"devDependencies": {
"@prettier/sync": "0.5.1",
"@typescript-eslint/utils": "7.6.0"
}
}
|