-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 998 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
{
"name": "@titsoft/layout-m",
"version": "0.6.0",
"description": "Group template instances",
"main": "src/index.js",
"type": "module",
"scripts": {
"build": "npm run rollup:esm_min && npm run rollup:esm && npm run rollup:esm_watch",
"rollup:esm_min": "rollup --config rollup/rollup.config_esm_min.js",
"rollup:esm": "rollup --config rollup/rollup.config_esm.js",
"rollup:esm_watch": "rollup --config rollup/rollup.config_esm.js --w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thipages/layout-m.git"
},
"author": "Thierry Pagès",
"license": "MIT",
"bugs": {
"url": "https://github.com/thipages/layout-m/issues"
},
"homepage": "https://github.com/thipages/layout-m#readme",
"dependencies": {
"@titsoft/dry-html": "^0.5.0",
"@titsoft/m-element": "^0.5.1",
"@webreflection/fetch": "^0.1.5"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4"
}
}