forked from browserslist/browserslist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
129 lines (129 loc) · 3.04 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "browserslist",
"version": "4.23.2",
"description": "Share target browsers between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset",
"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 <andrey@sitnik.ru>",
"license": "MIT",
"repository": "browserslist/browserslist",
"scripts": {
"unit": "NODE_ENV=test uvu test .test.js",
"test:coverage": "c8 pnpm unit",
"test:lint": "eslint .",
"test:size": "size-limit",
"test": "pnpm run /^test:/"
},
"dependencies": {
"caniuse-lite": "^1.0.30001640",
"electron-to-chromium": "^1.4.820",
"node-releases": "^2.0.14",
"update-browserslist-db": "^1.1.0"
},
"engines": {
"node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
},
"bin": {
"browserslist": "cli.js"
},
"types": "./index.d.ts",
"devDependencies": {
"@logux/eslint-config": "^53.2.0",
"@size-limit/preset-small-lib": "^11.1.4",
"c8": "^10.1.2",
"clean-publish": "^5.0.0",
"cross-spawn": "^7.0.3",
"eslint": "^9.6.0",
"eslint-plugin-es5": "^1.5.0",
"fs-extra": "^11.2.0",
"nanospy": "^1.0.0",
"size-limit": "^11.1.4",
"uvu": "^0.5.6"
},
"browser": {
"./node.js": "./browser.js",
"path": false
},
"clean-publish": {
"cleanDocs": true
},
"c8": {
"exclude": [
"**/*.test.*"
],
"lines": 100,
"reporter": "lcov",
"check-coverage": true
},
"size-limit": [
{
"path": "index.js",
"limit": "15 KB"
}
],
"eslintConfig": {
"plugins": [
"es5"
],
"extends": [
"@logux/eslint-config",
"plugin:es5/no-es2015"
],
"rules": {
"node-import/prefer-node-protocol": "off",
"perfectionist/sort-objects": "off",
"prefer-let/prefer-let": "off",
"prefer-arrow-callback": "off",
"n/global-require": "off",
"object-shorthand": "off",
"no-console": "off",
"no-var": "off"
},
"overrides": [
{
"files": "test/**/*",
"rules": {
"n/no-unsupported-features/es-syntax": "off",
"es5/no-shorthand-properties": "off",
"es5/no-template-literals": "off",
"es5/no-rest-parameters": "off",
"es5/no-arrow-functions": "off",
"es5/no-destructuring": "off",
"es5/no-block-scoping": "off",
"es5/no-es6-methods": "off",
"es5/no-spread": "off",
"es5/no-for-of": "off",
"no-console": "off"
}
}
]
},
"eslintIgnore": [
"test/fixtures"
],
"prettier": {
"arrowParens": "avoid",
"jsxSingleQuote": false,
"quoteProps": "consistent",
"semi": false,
"singleQuote": true,
"trailingComma": "none"
}
}