-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.11 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
46
47
{
"name": "mui",
"version": "1.0.0",
"description": "",
"targets": {
"global": {
"context": "browser",
"outputFormat": "global",
"source": "./src/main.js",
"sourceMap": false,
"distDir": "./static"
},
"esm": {
"context": "browser",
"outputFormat": "esmodule",
"source": "./src/main.js",
"sourceMap": false,
"optimize": true,
"distDir": "./static",
"isLibrary": true
},
"export" : {
"source": "services/export/index.html",
"sourceMap": false,
"optimize": false,
"distDir": "./static/services/export",
"context": "browser",
"publicUrl": "."
}
},
"scripts": {
"dev": "parcel index.html",
"build-img": "parcel build image/* --no-cache",
"global": "parcel build --target global --no-cache",
"export": "parcel services/export/index.html",
"export-build": "parcel build --target export",
"esm": "parcel build --target esm --no-cache"
},
"author": "",
"license": "ISC",
"dependencies": {
"ol": "^8.2.0"
},
"devDependencies": {
"parcel": "^2.10.3"
}
}