-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.03 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
{
"name": "@cityssm/web-browser-info",
"version": "1.0.0",
"description": "Retrieves details about installed web browsers.",
"type": "module",
"exports": "./index.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/node-web-browser-info.git"
},
"keywords": [
"web-browser",
"browser",
"chrome",
"firefox",
"edge"
],
"author": "The Corporation of the City of Sault Ste. Marie",
"license": "MIT",
"bugs": {
"url": "https://github.com/cityssm/node-web-browser-info/issues"
},
"homepage": "https://github.com/cityssm/node-web-browser-info#readme",
"devDependencies": {
"@types/node": "^22.10.2",
"eslint-config-cityssm": "^18.1.1",
"prettier-config-cityssm": "^1.0.0"
},
"dependencies": {
"@cityssm/to-millis": "^1.0.0",
"@httptoolkit/browser-launcher": "^2.3.0"
}
}