-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.14 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
{
"name": "@cityssm/puppeteer-launch",
"version": "4.0.0",
"description": "Launch Puppeteer, falling back to system browsers when the cached ones aren't working or aren't available.",
"type": "module",
"exports": {
".": "./index.js",
"./debug": "./debug.config.js"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"test": "node --test",
"coverage": "c8 --reporter=lcov --reporter=text --reporter=text-summary node --test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cityssm/puppeteer-launch.git"
},
"keywords": [
"chrome",
"chromium",
"firefox",
"puppeteer",
"web-browser"
],
"author": "The Corporation of the City of Sault Ste. Marie",
"license": "MIT",
"bugs": {
"url": "https://github.com/cityssm/puppeteer-launch/issues"
},
"homepage": "https://github.com/cityssm/puppeteer-launch#readme",
"dependencies": {
"@cityssm/web-browser-info": "^1.0.0",
"debug": "^4.4.0",
"puppeteer": "^24.0.0"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"eslint-config-cityssm": "^18.3.0",
"prettier-config-cityssm": "^1.0.0"
}
}