-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.4 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.4 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
{
"name": "@flancer32/teq-web",
"version": "0.11.0",
"description": "Server-side web request coordination infrastructure for TeqFW modular monolith applications.",
"type": "module",
"license": "Apache-2.0",
"author": {
"name": "Alex Gusev",
"email": "alex@flancer64.com",
"url": "https://github.com/flancer64"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flancer32/teq-web.git"
},
"homepage": "https://github.com/flancer32/teq-web",
"bugs": {
"url": "https://github.com/flancer32/teq-web/issues"
},
"keywords": [
"teqfw",
"tequila-framework",
"web",
"dispatcher",
"request-pipeline",
"dependency-injection",
"modular-monolith",
"nodejs"
],
"types": "types.d.ts",
"engines": {
"node": ">=20"
},
"teqfw": {
"namespaces": [
{
"prefix": "Fl32_Web_",
"path": "./src",
"ext": ".mjs"
}
]
},
"dependencies": {
"@teqfw/di": "^2.4.0"
},
"devDependencies": {
"@types/node": "^25.4.0"
},
"scripts": {
"test:unit": "find test/unit -name '*.test.mjs' -print0 | xargs -0 node --test",
"test:integration": "find test/integration -name '*.test.mjs' -print0 | xargs -0 node --test",
"test": "npm run test:unit && npm run test:integration"
},
"files": [
"ai/",
"src/",
"CHANGELOG.md",
"LICENSE",
"README.md",
"types.d.ts"
]
}