-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.18 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.18 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
48
49
50
51
52
53
{
"name": "mdu.js",
"author": "michaelb",
"version": "0.0.73",
"description": "Lightweight, easy-to-learn Web Component JavaScript framework",
"homepage": "https://modulojs.org/",
"main": "./src/Modulo.js",
"bin": {
"mdu-cli": "modulocli/modulocli.js",
"modulocli": "modulocli/modulocli.js"
},
"scripts": {
"serve": "npm run cli -- serve",
"srcserve": "npm run cli -- srcserve",
"start": "npm run cli -- srcserve",
"build": "npm run cli -- ssg -f",
"build-docs": "npm run cli -- ssg",
"cli": "node ./modulocli/modulocli.js",
"test": "npm run cli -- test"
},
"peerDependencies": {
"express": "^4.18.2",
"node-watch": "^0.7.2",
"puppeteer": "^13.7.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/modulojs/modulo.git"
},
"exports": {
"require": "./src/Modulo.js"
},
"keywords": [
"web-components",
"jamstack",
"UI",
"templates",
"templating",
"components",
"framework"
],
"files": [
"src/*",
"modulocli/*",
"modulocli/**/*",
"mdu/*",
"mdu/**/*"
],
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/modulojs/modulo/issues"
}
}