-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.31 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
{
"name": "@hughescr/logger",
"version": "2.10.0",
"description": "Logging module common to Craig's packages",
"keywords": [
"logging"
],
"homepage": "https://github.com/hughescr/shared-logger#readme",
"bugs": {
"url": "https://github.com/hughescr/shared-logger/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/hughescr/shared-logger.git"
},
"license": "Apache-2.0",
"author": "Craig Hughes <craig.npm@rungie.com> (https://npmjs.org/~hughescr)",
"type": "module",
"main": "src/index.ts",
"files": [
"src/index.ts"
],
"scripts": {
"lint": "eslint --cache --format unix .",
"lint:fix": "eslint --cache --fix --format overview .",
"lint:overview": "eslint --cache --format overview .",
"mutate": "stryker run",
"test": "if [ -n \"$CI\" ]; then bun test --timeout 60; else bun test --timeout 5; fi",
"test:full": "bun run lint;bun run typecheck;bun run mutate",
"test:watch": "bun test --watch",
"typecheck": "tsc --noEmit",
"postversion": "git commit -m \"Bump package version to $npm_package_version\" package.json; git flow release start $npm_package_version; git flow release finish -m $npm_package_version $npm_package_version; git checkout develop; git merge main"
},
"dependencies": {
"lodash": "^4.17.23",
"luxon": "^3.7.2",
"morgan": "^1.10.1",
"winston": "^3.19.0"
},
"devDependencies": {
"@hughescr/eslint-config-default": "^4.0.1",
"@hughescr/stryker-bun-runner": "^1.0.0",
"@stryker-mutator/core": "^9.5.0",
"@stryker-mutator/jest-runner": "^9.5.0",
"@stryker-mutator/typescript-checker": "^9.5.0",
"@types/bun": "^1.3.8",
"@types/jest": "^30.0.0",
"@types/supertest": "^6.0.3",
"eslint": "^9.39.2",
"eslint-formatter-overview": "2.0.0",
"eslint-formatter-unix": "9.0.1",
"eslint-plugin-jest": "^29.12.1",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-should-promised": "^2.0.0",
"jest": "^30.2.0",
"supertest": "^7.2.2",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0"
},
"peerDependencies": {
"@types/lodash": "^4.17.23",
"@types/luxon": "^3.7.1",
"@types/morgan": "^1.9.10",
"@types/node": "^25.2.0"
},
"engines": {
"node": ">=16"
},
"publishConfig": {
"access": "public"
}
}