-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
61 lines (61 loc) · 1.98 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
{
"name": "nodejs-configmap",
"description": "This project demonstrates application and runtime configuration leveraging external configuration sources",
"version": "4.0.0",
"author": "Red Hat, Inc.",
"license": "Apache-2.0",
"scripts": {
"pretest": "eslint --ignore-path .gitignore .",
"test": "nyc --reporter=lcov mocha",
"release": "standard-version -a",
"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",
"start": "node .",
"dev": "NODE_CONFIGMAP_PATH=./app-config.yml node . | npx pino-pretty",
"dev:debug": "DEBUG=* node . "
},
"main": "./bin/www",
"repository": {
"type": "git",
"url": "git://github.com/nodeshift-starters/nodejs-configmap.git"
},
"files": [
"package.json",
"app.js",
"logger.js",
"tracing.js",
"public",
"bin",
"LICENSE"
],
"bugs": {
"url": "https://github.com/nodeshift-starters/nodejs-configmap/issues"
},
"homepage": "https://github.com/nodeshift-starters/nodejs-configmap",
"devDependencies": {
"eslint": "^8.22.0",
"eslint-config-semistandard": "^17.0.0",
"mocha": "^10.1.0",
"nodeshift": "~8.7.0",
"nyc": "~15.1.0",
"proxyquire": "~2.1.3",
"sinon": "^14.0.1",
"standard-version": "^9.5.0",
"supertest": "~6.3.0"
},
"dependencies": {
"@opentelemetry/api": "^1.3.0",
"@opentelemetry/exporter-jaeger": "^1.8.0",
"@opentelemetry/instrumentation": "^0.34.0",
"@opentelemetry/instrumentation-express": "^0.32.0",
"@opentelemetry/instrumentation-http": "^0.34.0",
"@opentelemetry/resources": "^1.8.0",
"@opentelemetry/sdk-trace-base": "^1.9.0",
"@opentelemetry/sdk-trace-node": "^1.8.0",
"@opentelemetry/semantic-conventions": "^1.8.0",
"body-parser": "~1.20.0",
"express": "~4.18.2",
"js-yaml": "^4.1.0",
"pino": "^8.4.2"
}
}