-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
91 lines (91 loc) · 2.43 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
{
"name": "puppeteer-browser-ready",
"version": "1.3.7",
"description": "Simple utility to go to a URL and wait for the HTTP response",
"license": "MIT",
"type": "module",
"module": "dist/puppeteer-browser-ready.js",
"types": "dist/puppeteer-browser-ready.d.ts",
"exports": "./dist/puppeteer-browser-ready.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/center-key/puppeteer-browser-ready.git"
},
"homepage": "https://github.com/center-key/puppeteer-browser-ready",
"bugs": "https://github.com/center-key/puppeteer-browser-ready/issues",
"docs": "https://github.com/center-key/puppeteer-browser-ready#readme",
"author": "Center Key (https://centerkey.com)",
"keywords": [
"browser",
"http",
"javascript",
"mocha",
"puppeteer",
"puppeteer-browser-ready",
"ready",
"response",
"url"
],
"jshintConfig": {
"esversion": 11,
"strict": "implied",
"eqeqeq": true,
"latedef": true,
"nonbsp": true,
"singleGroups": true,
"undef": true,
"unused": true,
"mocha": true,
"node": true
},
"runScriptsConfig": {
"clean": [
"rimraf build dist"
],
"lint": [
"jshint . --exclude-path .gitignore",
"eslint --max-warnings 0"
],
"build": [
"tsc",
"add-dist-header build dist",
"html-validator spec"
]
},
"scripts": {
"pretest": "run-scripts clean lint build",
"test": "mocha spec/*.spec.js --timeout 7000 --retries 1"
},
"peerDependencies": {
"puppeteer": "^15 || ^16 || ^17 || ^18 || ^19.7 || ^20 || ^21 || ^22.8 || ^23 || ^24"
},
"dependencies": {
"express": "~4.21",
"http-terminator": "~3.2",
"node-html-parser": "~7.0"
},
"devDependencies": {
"@eslint/js": "~9.18",
"@types/express": "~5.0",
"@types/mocha": "~10.0",
"@types/node": "~22.10",
"@types/ws": "~8.5",
"add-dist-header": "~1.4",
"assert-deep-strict-equal": "~1.2",
"copy-file-util": "~1.2",
"copy-folder-util": "~1.1",
"eslint": "~9.18",
"jshint": "~2.13",
"mocha": "~11.0",
"open": "~10.1",
"puppeteer": "~24.0",
"rimraf": "~6.0",
"run-scripts-util": "~1.3",
"typescript": "~5.7",
"typescript-eslint": "~8.19",
"w3c-html-validator": "~1.8"
}
}