-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.02 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.02 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
{
"name": "mdn-compat-browserlist",
"version": "0.0.5",
"license": "MIT",
"author": "SerKo (https://github.com/serkodev)",
"repository": {
"type": "git",
"url": "https://github.com/serkodev/mdn-compat-browserlist.git"
},
"homepage": "https://github.com/serkodev/mdn-compat-browserlist",
"keywords": [
"mdn",
"mozilla",
"browserlist",
"browser",
"compat",
"compatible",
"compatible"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prebuild": "rm -rf dist",
"build": "tsc",
"prepublishOnly": "yarn build"
},
"dependencies": {
"@mdn/browser-compat-data": "^4.1.16",
"browserslist": "^4.20.2",
"compare-versions": "^4.1.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"eslint": "^8.13.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"peerDependencies": {
"@mdn/browser-compat-data": "^4.1.16"
},
"files": [
"dist/**/*"
]
}