-
-
Notifications
You must be signed in to change notification settings - Fork 77
/
Copy pathpackage.json
91 lines (91 loc) · 2.14 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
{
"name": "caniuse-lite",
"version": "1.0.30001450",
"description": "A smaller version of caniuse-db, with only the essentials!",
"main": "dist/unpacker/index.js",
"scripts": {
"integration": "node ./consumer.js > /dev/null",
"pack": "node copy-mdn.js && rm -Rf data && node src/packer/index.js",
"unit": "uvu . \\.test\\.js$",
"test": "pnpm run pack && eslint . && pnpm run unit && pnpm run integration"
},
"files": [
"data",
"dist"
],
"keywords": [
"support"
],
"author": {
"name": "Ben Briggs",
"email": "beneb.info@gmail.com",
"url": "http://beneb.info"
},
"repository": "browserslist/caniuse-lite",
"funding": [
{
"type": "opencollective",
"url": "https://opencollective.com/browserslist"
},
{
"type": "tidelift",
"url": "https://tidelift.com/funding/github/npm/caniuse-lite"
}
],
"license": "CC-BY-4.0",
"devDependencies": {
"@babel/generator": "^7.20.14",
"@babel/types": "^7.20.7",
"@logux/eslint-config": "^48.0.0",
"@mdn/browser-compat-data": "5.2.33",
"caniuse-db": "1.0.30001450",
"clean-publish": "^4.1.1",
"eslint": "^8.33.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-prefer-let": "^3.0.1",
"eslint-plugin-promise": "^6.1.1",
"uvu": "^0.5.6"
},
"eslintConfig": {
"extends": "@logux/eslint-config",
"rules": {
"n/global-require": "off",
"camelcase": "off"
},
"overrides": [
{
"files": "dist/**/*.js",
"rules": {
"prefer-exponentiation-operator": "off"
}
},
{
"files": [
"src/**/*.js",
"*.js"
],
"rules": {
"n/no-unsupported-features/node-builtins": "off",
"no-console": "off"
}
}
]
},
"eslintIgnore": [
"data/",
"dist/"
],
"prettier": {
"arrowParens": "avoid",
"jsxSingleQuote": false,
"quoteProps": "consistent",
"semi": false,
"singleQuote": true,
"trailingComma": "none"
},
"clean-publish": {
"cleanDocs": true
}
}