-
-
Notifications
You must be signed in to change notification settings - Fork 71
/
package.json
81 lines (81 loc) · 1.71 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
{
"name": "update-browserslist-db",
"version": "1.1.1",
"description": "CLI tool to update caniuse-lite to refresh target browsers from Browserslist config",
"keywords": [
"caniuse",
"browsers",
"target"
],
"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"
}
],
"author": "Andrey Sitnik <[email protected]>",
"license": "MIT",
"repository": "browserslist/update-db",
"types": "./index.d.ts",
"exports": {
".": "./index.js",
"./package.json": "./package.json"
},
"scripts": {
"unit": "uvu test .test.js",
"test:lint": "eslint .",
"test:coverage": "c8 pnpm unit",
"test": "pnpm run /^test:/"
},
"dependencies": {
"escalade": "^3.2.0",
"picocolors": "^1.1.0"
},
"peerDependencies": {
"browserslist": ">= 4.21.0"
},
"bin": "cli.js",
"devDependencies": {
"@logux/eslint-config": "^53.4.0",
"browserslist": "^4.24.0",
"c8": "^10.1.2",
"clean-publish": "^5.0.0",
"eslint": "^9.11.1",
"fs-extra": "^11.2.0",
"nanoid": "^3.3.7",
"uvu": "^0.5.6"
},
"clean-publish": {
"cleanDocs": true
},
"c8": {
"exclude": [
"**/*.test.*"
],
"lines": 100,
"reporter": "lcov",
"check-coverage": true
},
"size-limit": [
{
"path": "index.js",
"limit": "16 KB"
}
],
"prettier": {
"arrowParens": "avoid",
"jsxSingleQuote": false,
"quoteProps": "consistent",
"semi": false,
"singleQuote": true,
"trailingComma": "none"
}
}