-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 918 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
33
34
35
{
"name": "@titsoft/dry-html",
"version": "0.5.0",
"description": "DRY html",
"main": "src/index.js",
"type": "module",
"scripts": {
"build": "npm run rollup:auto_min && npm run rollup:esm_min",
"rollup:esm_min": "rollup --config rollup/rollup.config_esm_min.js",
"rollup:auto_min": "rollup --config rollup/rollup.config_auto_min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thipages/dry-html.git"
},
"keywords": [
"DRY",
"html",
"template"
],
"author": "Thierry Pagès",
"license": "MIT",
"bugs": {
"url": "https://github.com/thipages/dry-html/issues"
},
"homepage": "https://github.com/thipages/dry-html#readme",
"devDependencies": {
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4"
},
"dependencies": {
"@titsoft/m-element": "^0.2.0"
}
}