-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
104 lines (104 loc) · 2.45 KB
/
package.json
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "puppeteer-devtools",
"version": "3.3.0",
"description": "Extended puppeteer methods for getting extension devtools contexts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "npm-run-all build:definition build:ts",
"build:definition": "tsc --emitDeclarationOnly",
"build:ts": "babel src --out-dir dist --extensions \".ts\"",
"clean:dist": "rimraf dist",
"coverage": "nyc mocha",
"fmt": "prettier --write *.{md,js,json} 'src/**/*.{md,ts,json}'",
"lint": "eslint .",
"prebuild": "npm-run-all clean:*",
"prepare": "npm run build",
"release": "standard-version",
"test": "mocha --parallel"
},
"author": "Jason Wilson <[email protected]>",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "https://github.com/dequelabs/puppeteer-devtools.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/preset-env": "^7.7.1",
"@babel/preset-typescript": "^7.7.2",
"@types/mocha": "^10.0.6",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"husky": "^3.1.0",
"lint-staged": "^12.3.3",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"prettier": "^3.0.0",
"puppeteer": "14.1.1",
"rimraf": "^3.0.0",
"standard-version": "^9.3.2",
"ts-node": "^8.5.2",
"typescript": "^5.1.6"
},
"peerDependencies": {
"puppeteer": ">= 9.1.1 <= 14.1.1"
},
"prettier": {
"singleQuote": true,
"arrowParens": "avoid",
"bracketSpacing": true,
"printWidth": 80,
"semi": false,
"tabWidth": 2,
"useTabs": false,
"trailingComma": "none"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true,
"checkCoverage": true,
"statements": 95,
"branches": 84,
"functions": 95,
"lines": 95
}
}