-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 1.98 KB
/
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
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
{
"name": "@chubbyts/chubbyts-framework",
"type": "module",
"version": "1.9.4",
"description": "A minimal, highly performant middleware PSR-15 inspired function based microframework built with as little complexity as possible, aimed primarily at those developers who want to understand all the vendors they use.",
"keywords": [
"chubbyts",
"microframework",
"micro framework",
"middleware",
"handler",
"psr-15"
],
"author": "Dominik Zogg",
"license": "MIT",
"repository": "chubbyts/chubbyts-framework",
"scripts": {
"build": "node ./build.js",
"cs-fix": "prettier --write src tests *.cjs *.ts",
"cs": "prettier --check src tests *.cjs *.ts",
"infection": "stryker run",
"lint-fix": "eslint src tests --fix",
"lint": "eslint src tests",
"prepare": "npm run build",
"test": "vitest",
"typedoc": "rm -Rf docs && typedoc"
},
"prettier": {
"printWidth": 120,
"tabWidth": 2,
"singleQuote": true,
"trailingComma": "all"
},
"files": [
"dist"
],
"exports": {
"./*": {
"types": "./*.d.ts",
"require": "./*.cjs",
"import": "./*.mjs",
"default": "./*.mjs"
}
},
"engines": {
"node": ">=16"
},
"dependencies": {
"@chubbyts/chubbyts-dic-types": "^1.2.1",
"@chubbyts/chubbyts-http-error": "^2.3.1",
"@chubbyts/chubbyts-http-node-bridge": "^1.2.0",
"@chubbyts/chubbyts-http-types": "^1.2.3",
"@chubbyts/chubbyts-log-types": "^1.3.2",
"@chubbyts/chubbyts-throwable-to-error": "^1.2.1"
},
"devDependencies": {
"@chubbyts/chubbyts-eslint": "^2.0.7",
"@chubbyts/chubbyts-function-mock": "^1.4.3",
"@chubbyts/chubbyts-packaging": "^2.0.7",
"@stryker-mutator/core": "^8.2.6",
"@stryker-mutator/vitest-runner": "^8.2.6",
"@types/node": "^20.14.6",
"@vitest/coverage-v8": "^1.6.0",
"prettier": "^3.3.2",
"typedoc": "^0.25.13",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
},
"publishConfig": {
"access": "public"
}
}