-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
148 lines (148 loc) · 4.39 KB
/
Copy pathpackage.json
File metadata and controls
148 lines (148 loc) · 4.39 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
"name": "qcobjects",
"version": "2.5.142",
"description": "QCObjects is an Open-source framework that empowers full-stack developers to make micro-services and micro-frontends into an N-Tier architecture.",
"main": "public/cjs/index.cjs",
"module": "public/esm/index.mjs",
"browser": "public/browser/QCObjects.js",
"type": "commonjs",
"types": "public/types/index.d.ts",
"exports": {
".": {
"types": "./public/types/index.d.ts",
"require": "./public/cjs/index.cjs",
"import": "./public/esm/index.mjs"
},
"./types/*": "./types/*",
"./package.json": "./package.json",
"./tsconfig.json": "./tsconfig.json",
"./tsconfig.d.json": "./tsconfig.d.json",
"./tsconfig.jasmine.json": "./tsconfig.jasmine.json",
"./*.js": "./public/*.js",
"./*.cjs": "./public/cjs/*.cjs",
"./*.mjs": "./public/esm/*.mjs",
"./*": {
"require": "./public/cjs/*.cjs",
"import": "./public/esm/*.mjs"
}
},
"license": "LGPL-3.0",
"scripts": {
"build": "npm run build:ts-types && npm run build:ts && npm run build:browser",
"postbuild": "node ./postbuild.js",
"build:ts": "npm run coverage && npx tsc",
"build:ts-types": "npx tsc --project tsconfig.d.json",
"build:browser": "npm run build:esbuild",
"build:esbuild": "node ./build-esbuild.js",
"start": "qcobjects-shell",
"test:ts-types": "npx tsc --project ./tsconfig.jasmine.json ",
"test:jasmine": "npm run test:ts-types && npx ts-node -r tsconfig-paths/register --project ./tsconfig.jasmine.json ./node_modules/jasmine/bin/jasmine.js",
"test": "(npm run lint && npm run test:jasmine)",
"coverage": "nyc --reporter=lcov --reporter=text-summary npm run test",
"lint": "(npx eslint src/**/*.ts --fix )",
"preversion": "npm cache verify && npm run coverage",
"sync": "git add . && git commit -am ",
"postversion": "git push && git push --tags",
"v-patch": "qcobjects v-patch",
"v-minor": "qcobjects v-minor",
"v-major": "qcobjects v-major",
"qcobjects": "qcobjects",
"cli": "qcobjects",
"prepare": "node -e \"if(!require('fs').existsSync('.git')){process.exit(0)}\" || npx -y husky install",
"cli:help": "qcobjects --help",
"tree": "tree -d --gitignore",
"generate-readme-pdf": "(npx -y markdown-pdf --paper-format \"Letter\" -o README.pdf README.md && npx markdown-pdf --paper-format \"Letter\" -o README-es.pdf README-es.md) && npm uninstall markdown-pdf"
},
"repository": {
"type": "git",
"url": "git+https://github.com/QuickCorp/QCObjects.git"
},
"keywords": [
"qcobjects",
"cobjects",
"learn javascript",
"javascript",
"learn to code",
"qco",
"ROUTING",
"TOOLBAR",
"MEDIA",
"IMAGE",
"LAYOUT",
"BUTTON",
"server",
"view",
"mvvm",
"node",
"quickcorp",
"javascript",
"pure",
"mvc",
"objects",
"microfrontend",
"micro-frontend",
"architecture",
"component",
"components",
"pure",
"framework",
"javascript-framework",
"mvc-pattern",
"demo",
"html",
"first-timers-only",
"microfrontends",
"microservices",
"microfrontend",
"component-architecture",
"cli",
"tool",
"nodejs",
"cloud",
"multicloud",
"multi-cloud",
"aws",
"server",
"digitalocean",
"hosting",
"architecture",
"n-tier",
"multitier",
"multi-tier"
],
"author": "Jean Machuca <correojean@gmail.com>",
"bugs": {
"url": "https://github.com/QuickCorp/QCObjects/issues"
},
"homepage": "https://qcobjects.com",
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.13.0",
"@types/jasmine": "^5.1.7",
"@types/node": "^22.13.10",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"esbuild": "^0.25.0",
"esbuild-plugin-alias": "^0.2.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.10.0",
"eslint-config-semistandard": "^17.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"globals": "^15.11.0",
"hint": "^2.0.0",
"install": "^0.13.0",
"jasmine": "^3.99.0",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1",
"nyc": "^15.1.0"
},
"engines": {
"npm": ">=10",
"node": ">=22"
}
}