This repository was 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
68 lines (68 loc) · 1.54 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
{
"name": "@chubbyjs/chubbyjs-framework-router-path-to-regexp",
"version": "1.0.1",
"description": "Path-to-regex routing implementation for chubbjs-framework.",
"keywords": [
"chubbyjs",
"framework",
"router",
"psr-7",
"psr-15"
],
"author": "Dominik Zogg",
"license": "MIT",
"repository": "chubbyjs/chubbyjs-framework-router-path-to-regexp",
"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"
},
"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": ">=12"
},
"dependencies": {
"@chubbyjs/chubbyjs-framework": "^1.1.0",
"@chubbyjs/psr-http-message": "^1.2.1",
"@types/node": "^12",
"@types/qs": "^6.9.7",
"path-to-regexp": "^6.2.0",
"qs": "^6.10.1"
},
"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",
"typescript": "^4.4.2"
},
"publishConfig": {
"access": "public"
}
}