-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.81 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
{
"name": "nodejs-cache-greeting",
"version": "4.0.0",
"author": "Red Hat, Inc.",
"license": "Apache-2.0",
"scripts": {
"pretest": "eslint --ignore-path ../.gitignore .",
"test": "mocha",
"lint:fix": "eslint . --fix",
"start": "node .",
"openshift": "nodeshift --dockerImage=registry.access.redhat.com/ubi8/nodejs-18",
"openshift:enable:trace": "nodeshift --deploy.env NODE_OPTIONS='--require ./tracing.js' --dockerImage=registry.access.redhat.com/ubi8/nodejs-18"
},
"main": "./bin/www",
"repository": {
"type": "git",
"url": "git://github.com/nodeshift-starters/nodejs-cache.git"
},
"files": [
"package.json",
"LICENSE",
"bin",
"lib",
"public",
"tracing.js",
"app.js"
],
"bugs": {
"url": "https://github.com/nodeshift-starters/nodejs-cache/issues"
},
"homepage": "https://github.com/nodeshift-starters/nodejs-cache",
"devDependencies": {
"eslint": "^8.23.1",
"eslint-config-semistandard": "^17.0.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-promise": "^6.0.1",
"mocha": "^10.1.0",
"nodeshift": "~8.7.0",
"nyc": "~15.1.0",
"proxyquire": "~2.1.3",
"supertest": "~6.3.0"
},
"dependencies": {
"@opentelemetry/api": "^1.2.0",
"@opentelemetry/exporter-jaeger": "^1.7.0",
"@opentelemetry/instrumentation": "^0.33.0",
"@opentelemetry/instrumentation-express": "^0.31.2",
"@opentelemetry/instrumentation-http": "^0.33.0",
"@opentelemetry/resources": "^1.7.0",
"@opentelemetry/sdk-trace-base": "^1.7.0",
"@opentelemetry/sdk-trace-node": "^1.7.0",
"@opentelemetry/semantic-conventions": "^1.7.0",
"axios": "^1.8.3",
"body-parser": "~1.20.0",
"express": "~4.18.2",
"infinispan": "~0.9.0"
}
}