-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
33 lines (33 loc) · 1014 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
{
"name": "makeup-snackbar-dialog",
"description": "JavaScript class representing a snackbar dialog",
"version": "0.2.4",
"main": "./dist/cjs/index.js",
"module": "./dist/mjs/index.js",
"exports": {
".": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js"
}
},
"repository": "https://github.com/makeup/makeup-js/tree/master/packages/ui/makeup-snackbar-dialog",
"author": "Ian McBurnie <[email protected]>",
"license": "MIT",
"scripts": {
"compile": "npm run compile:mjs && npm run compile:cjs",
"compile:mjs": "esbuild src/index.js --outfile=dist/mjs/index.js --format=esm",
"compile:cjs": "babel --plugins @babel/plugin-transform-modules-commonjs src/index.js --out-file dist/cjs/index.js"
},
"dependencies": {
"makeup-dialog": "^0.5.4"
},
"files": [
"dist/cjs/index.js",
"dist/mjs/index.js",
"dist/mjs/package.json",
"package-lock.json"
],
"browserslist": [
"extends @ebay/browserslist-config"
]
}