-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 926 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 926 Bytes
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": "@fiug/layout",
"version": "0.1.0",
"description": "page layout for browser applications",
"main": "dist/layout.js",
"exports": {
".": {
"import": "dist/layout.js"
}
},
"scripts": {
"prepublishOnly": "npm run build",
"build": "rm -rf dist && rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fiugd/layout.git"
},
"keywords": [
"docking",
"layout",
"layout manager",
"esm"
],
"author": "Harrison Cross",
"license": "MIT",
"bugs": {
"url": "https://github.com/fiugd/layout/issues"
},
"homepage": "https://github.com/fiugd/layout#readme",
"publishConfig": {
"access": "public"
},
"dependencies": {
},
"devDependencies": {
"rollup": "^2.26.11",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-filesize": "^9.0.2",
"rollup-plugin-gzip": "^2.5.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2"
}
}