|
13 | 13 | }, |
14 | 14 | "license": "Apache-2.0", |
15 | 15 | "scripts": { |
| 16 | + "start": "node build/src/index.js", |
16 | 17 | "prepack": "npm run compile", |
17 | | - "compile": "npm run clean && tsc --build tsconfig.json tsconfig.esm.json tsconfig.esnext.json", |
| 18 | + "compile": "npm run clean && tsc --build tsconfig.json tsconfig.esm.json tsconfig.esnext.json && npm run generate:exports", |
18 | 19 | "clean": "tsc --build --clean tsconfig.json tsconfig.esm.json tsconfig.esnext.json", |
19 | 20 | "lint": "eslint src tests", |
20 | 21 | "lint:fix": "eslint --fix src tests", |
21 | 22 | "preversion": "npm run lint && npm run test && npm run compile", |
22 | 23 | "pretest": "npm run compile", |
23 | 24 | "dryrun": "npm pack --dry-run", |
24 | 25 | "test": "cross-env LOGGER_LEVEL=silent jest", |
25 | | - "test:coverage": "cross-env LOGGER_LEVEL=silent jest --coverage" |
| 26 | + "test:coverage": "cross-env LOGGER_LEVEL=silent jest --coverage", |
| 27 | + "coverage": "npm run test:coverage", |
| 28 | + "test:debug": "cross-env LOGGER_LEVEL=info jest", |
| 29 | + "generate:exports": "node scripts/generate-exports.mjs" |
26 | 30 | }, |
27 | 31 | "keywords": [ |
28 | 32 | "utils", |
|
45 | 49 | "catbee" |
46 | 50 | ], |
47 | 51 | "dependencies": { |
48 | | - "@types/express": "^5.0.3", |
49 | | - "abort-controller": "^3.0.0", |
50 | | - "pino": "^9.7.0", |
51 | | - "reflect-metadata": "^0.2.2" |
| 52 | + "pino": "^9.7.0" |
52 | 53 | }, |
53 | 54 | "devDependencies": { |
| 55 | + "@types/express": "^5.0.3", |
54 | 56 | "@types/jest": "^30.0.0", |
55 | 57 | "@types/node": "^24.2.0", |
56 | 58 | "@typescript-eslint/eslint-plugin": "^8.39.0", |
57 | 59 | "@typescript-eslint/parser": "^8.39.0", |
| 60 | + "abort-controller": "^3.0.0", |
58 | 61 | "cross-env": "^10.0.0", |
59 | 62 | "eslint": "^9.32.0", |
60 | 63 | "eslint-config-prettier": "^10.1.8", |
|
64 | 67 | "jest": "^30.0.5", |
65 | 68 | "jest-junit": "^16.0.0", |
66 | 69 | "jest-sonar-reporter": "^2.0.0", |
| 70 | + "pino-pretty": "^13.1.1", |
67 | 71 | "prettier": "^3.6.2", |
| 72 | + "reflect-metadata": "^0.2.2", |
68 | 73 | "ts-jest": "^29.4.1", |
69 | 74 | "typescript": "^5.9.2", |
70 | 75 | "typescript-eslint": "^8.39.0" |
|
0 commit comments