-
-
Notifications
You must be signed in to change notification settings - Fork 221
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.54 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
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "update-browserslist-db",
"version": "1.3.1",
"description": "CLI tool to update caniuse-lite to refresh target browsers from Browserslist config",
"keywords": [
"browsers",
"caniuse",
"target"
],
"license": "MIT",
"author": "Andrey Sitnik <andrey@sitnik.es>",
"repository": "browserslist/update-db",
"funding": [
{
"type": "opencollective",
"url": "https://opencollective.com/browserslist"
},
{
"type": "tidelift",
"url": "https://tidelift.com/funding/github/npm/browserslist"
},
{
"type": "github",
"url": "https://github.com/sponsors/ai"
}
],
"bin": "cli.js",
"types": "./index.d.ts",
"exports": {
".": "./index.js",
"./package.json": "./package.json"
},
"scripts": {
"unit": "uvu test .test.js",
"test:lint": "oxlint",
"test:coverage": "c8 pnpm unit",
"test": "pnpm run /^test:/"
},
"dependencies": {
"escalade": "^3.2.0",
"picocolors": "^1.1.1"
},
"devDependencies": {
"@logux/oxc-configs": "^1.1.0",
"actions-up": "^1.17.0",
"browserslist": "^4.28.8",
"c8": "^12.0.0",
"eslint-plugin-prefer-let": "^4.2.2",
"oxlint": "^1.77.0",
"oxlint-tsgolint": "^7.0.2001",
"typescript": "^7.0.2",
"uvu": "^0.5.6"
},
"peerDependencies": {
"browserslist": ">= 4.21.0"
},
"size-limit": [
{
"path": "index.js",
"limit": "16 KB"
}
],
"c8": {
"check-coverage": true,
"exclude": [
"**/*.test.*"
],
"lines": 100,
"reporter": "lcov"
}
}