-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.32 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.32 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
{
"name": "makeup-dialog",
"description": "Abstract class representing the base behaviour for a modal or non-modal ARIA dialog",
"version": "0.7.0",
"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-dialog",
"author": "Ian McBurnie <ianmcburnie@hotmail.com>",
"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 && esbuild src/transition.js --outfile=dist/mjs/transition.js --format=esm",
"compile:cjs": "babel --plugins @babel/plugin-transform-modules-commonjs src/index.js --out-file dist/cjs/index.js && babel --plugins @babel/plugin-transform-modules-commonjs src/transition.js --out-file dist/cjs/transition.js",
"clean": "rimraf *.log .DS_Store"
},
"dependencies": {
"makeup-focusables": "^0.5.0",
"makeup-modal": "^0.7.0"
},
"files": [
"dist/cjs/index.js",
"dist/cjs/transition.js",
"dist/mjs/index.js",
"dist/mjs/transition.js",
"dist/mjs/package.json",
"package-lock.json"
],
"browserslist": [
"extends @ebay/browserslist-config"
]
}