forked from marcofugaro/browserslist-to-esbuild
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 880 Bytes
/
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
{
"name": "browserslist-to-esbuild",
"version": "2.1.1",
"description": "Get esbuild-compatible targets from a browserlist config",
"license": "MIT",
"repository": "marcofugaro/browserslist-to-esbuild",
"author": {
"name": "Marco Fugaro",
"email": "[email protected]",
"url": "https://marcofuga.ro"
},
"keywords": [
"browserslist",
"browserlist",
"esbuild",
"browsers"
],
"type": "module",
"exports": {
"types": "./src/index.d.ts",
"default": "./src/index.js"
},
"types": "./src/index.d.ts",
"bin": {
"browserslist-to-esbuild": "./cli/index.js"
},
"engines": {
"node": ">=18"
},
"scripts": {
"test": "ava"
},
"files": [
"src/",
"cli/"
],
"peerDependencies": {
"browserslist": "*"
},
"dependencies": {
"meow": "^13.0.0"
},
"devDependencies": {
"ava": "^6.0.1",
"browserslist": "^4.22.2",
"sinon": "^17.0.1"
}
}