-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.22 KB
/
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
{
"name": "imm-dom",
"version": "0.4.0",
"description": "Immediate-mode DOM tools",
"license": "BSD-2-Clause",
"author": "Shane Holloway <[email protected]>",
"homepage": "https://github.com/shanewholloway/js-imm-dom#readme",
"bugs": {
"url": "https://github.com/shanewholloway/js-imm-dom/issues"
},
"repository": {
"type": "git",
"url": "git+ssh:https://[email protected]/shanewholloway/js-imm-dom.git"
},
"files": [
"code/",
"esm/",
"umd/"
],
"type": "module",
"exports": {
"./esm/*": "./esm/*",
"./umd/*": "./umd/*",
".": "./esm/index.js"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"qsrv": "^0.2.8",
"rollup": "^3.29.5",
"rollup-plugin-dgnotify": "^0.1.8"
},
"scripts": {
"serve": "qsrv -p 8081 -- index.html ./esm ./examples",
"clean": "rm -rf ./esm/* ./umd/*",
"build": "rollup --config",
"watch": "npm -s run build -- --watch",
"precompress": "rm -rf esm/* ; npm -s run build",
"compress": "gzip -k esm/*.min.js ; brotli esm/*.min.js",
"postcompress": "node ./_util/doc_compressed.js docs/compressed.md",
"prepublishOnly": "npm -s run compress",
"pretest": "npm -s run build",
"test": "true"
}
}