-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.47 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.47 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
74
75
76
77
78
79
80
81
82
83
84
{
"name": "cf-nodejs-logging-support",
"version": "8.0.0",
"description": "Logging tool for Cloud Foundry",
"keywords": [
"logging",
"cloud-foundry"
],
"main": "build/cjs/index.js",
"types": "build/cjs/index.d.ts",
"typings": "build/cjs/index.d.ts",
"module": "build/esm/index.js",
"exports": {
".": {
"import": {
"types": "./build/esm/index.d.ts",
"default": "./build/esm/index.js"
},
"require": {
"types": "./build/cjs/index.d.ts",
"default": "./build/cjs/index.js"
}
}
},
"repository": {
"type": "git",
"url": "https://github.com/SAP/cf-nodejs-logging-support"
},
"license": "Apache-2.0",
"author": {
"name": "Christian Dinse, Nicklas Dohrn, Federico Romagnoli"
},
"homepage": "https://sap.github.io/cf-nodejs-logging-support/",
"scripts": {
"build": "npm run build-json-schema && tsc -p tsconfig.cjs.json && tsc -p tsconfig.esm.json && node scripts/build-post.mjs",
"build-json-schema": "typescript-json-schema 'src/lib/config/interfaces.ts' ConfigObject --noExtraProps --required --out 'src/lib/config/default/config-schema.json'",
"prepare": "npm run build",
"test": "npm run build && node build/cjs/index.js && mocha 'src/test/**/*.test.js'",
"test-performance": "mocha 'src/performance-test/*.test.js'",
"test-coverage": "nyc --reporter=lcov --reporter=text-summary npm run test",
"lint": "eslint src --ext .ts",
"lint-fix": "eslint src --ext .ts --fix"
},
"engines": {
"node": ">=22"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/json-stringify-safe": "^5.0.3",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^25.6.0",
"@types/triple-beam": "^1.3.5",
"@typescript-eslint/eslint-plugin": "^8.59.1",
"@typescript-eslint/parser": "^8.59.1",
"chai": "^6.2.2",
"connect": "^3.7.0",
"express": "^5.2.1",
"fastify": "^5.8.5",
"globals": "^17.5.0",
"import-fresh": "^3.3.1",
"jiti": "^2.6.1",
"mocha": "^11.7.5",
"node-mocks-http": "^1.17.2",
"nyc": "^18.0.0",
"rewire": "^9.0.1",
"supertest": "^7.2.2",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.1",
"typescript-json-schema": "^0.67.1"
},
"files": [
"/.reuse/",
"/build/",
"LICENSE",
"README.md"
],
"dependencies": {
"ajv": "^8.18.0",
"json-stringify-safe": "^5.0.1",
"jsonwebtoken": "^9.0.3",
"triple-beam": "^1.4.1",
"winston-transport": "^4.9.0"
}
}