This repository has been archived by the owner on Jul 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.8 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": "@chubbyjs/chubbyjs-framework-skeleton",
"version": "1.0.0",
"description": "A minimal skeleton for chubbyjs-framework.",
"keywords": [
"chubbyjs",
"framework",
"skleton"
],
"author": "Dominik Zogg",
"license": "MIT",
"repository": "chubbyjs/chubbyjs-framework-skeleton",
"scripts": {
"cs-fix": "prettier --write src tests",
"cs": "prettier --check src tests",
"test": "jest",
"infection": "stryker run",
"build": "tsc",
"prepare": "rm -Rf dist && npm run build && npm run cs && npm run test",
"start": "tsc-watch --onSuccess \"node ./dist/public/index.js\""
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"collectCoverageFrom": [
"src/**/*.ts"
],
"coverageThreshold": {
"global": {
"lines": 100
}
}
},
"prettier": {
"printWidth": 120,
"tabWidth": 4,
"singleQuote": true,
"trailingComma": "all"
},
"files": [
"dist"
],
"engines": {
"node": ">=14"
},
"dependencies": {
"@chubbyjs/chubbyjs-framework-router-path-to-regexp": "^1.0.1",
"@chubbyjs/chubbyjs-framework": "^1.1.7",
"@chubbyjs/chubbyjs-http-message": "^1.1.1",
"@chubbyjs/chubbyjs-laminas-config": "^1.0.2",
"@chubbyjs/chubbyjs-node-psr-http-message-bridge": "^1.2.1",
"@chubbyjs/chubbyjs-pino-psr": "^1.0.0",
"@types/commander": "^2.12.2",
"@types/node": "^14",
"commander": "^8.2.0"
},
"devDependencies": {
"@chubbyjs/chubbyjs-mock": "^1.1.1",
"@stryker-mutator/core": "^5.3.0",
"@stryker-mutator/jest-runner": "^5.3.0",
"@types/jest": "^27.0.1",
"jest": "^27.1.0",
"prettier": "2.3.2",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"tsc-watch": "^4.5.0",
"typescript": "^4.4.2"
},
"publishConfig": {
"access": "public"
}
}