-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.74 KB
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
{
"name": "checar-versao-do-navegador-do-cliente",
"version": "3.3.0",
"description": "Biblioteca JavaScript leve (~13 KB min) para detectar o navegador do cliente, classificar o nível de suporte e avisar o usuário quando for necessário atualizar. Parametrizável, UMD (script/require/import), IE11-safe.",
"main": "checarNavegadorCliente.js",
"module": "checarNavegadorCliente.js",
"browser": "checarNavegadorCliente.min.js",
"unpkg": "checarNavegadorCliente.min.js",
"jsdelivr": "checarNavegadorCliente.min.js",
"files": [
"checarNavegadorCliente.js",
"checarNavegadorCliente.min.js",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"build": "terser checarNavegadorCliente.js -c passes=2 -m --comments \"/^!/\" -o checarNavegadorCliente.min.js",
"test": "node tests/suite.js",
"test:min": "node tests/suite.js --min",
"prepublishOnly": "npm run build && npm test && npm run test:min"
},
"keywords": [
"navegador",
"browser",
"detection",
"user-agent",
"client-hints",
"deteccao",
"versao",
"version",
"suporte",
"compatibilidade",
"ie11",
"legacy",
"pt-br"
],
"author": "Rodrigo — Fortaleza Digital da Bahia Softwares & TI Ltda",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/FDBnet/checar-versao-do-navegador-do-cliente.git"
},
"bugs": {
"url": "https://github.com/FDBnet/checar-versao-do-navegador-do-cliente/issues"
},
"homepage": "https://github.com/FDBnet/checar-versao-do-navegador-do-cliente#readme",
"engines": {
"node": ">=14"
},
"sideEffects": [
"checarNavegadorCliente.js",
"checarNavegadorCliente.min.js"
],
"devDependencies": {
"terser": "^5.34.1"
}
}