-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.82 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.82 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
{
"name": "@digiserve/ab-utils",
"version": "1.10.3",
"description": "A common set of utility functions shared by our AppBuilder services",
"main": "ab-utils.js",
"author": "Johnny Hausman",
"license": "MIT",
"homepage": "https://github.com/CruGlobal/ab-utils#readme",
"bugs": {
"url": "https://github.com/CruGlobal/ab-utils/issues"
},
"repository": "github:CruGlobal/ab-utils",
"dependencies": {
"@opentelemetry/api": "^1.7.0",
"@opentelemetry/auto-instrumentations-node": "^0.47.0",
"@opentelemetry/exporter-trace-otlp-grpc": "^0.52.0",
"@opentelemetry/instrumentation-knex": "^0.32.1",
"@opentelemetry/sdk-node": "^0.52.0",
"@sentry/node": "^7.69.0",
"@sentry/opentelemetry-node": "^7.72.0",
"async": "^3.2.2",
"bfj": "^7.0.2",
"cote": "^1.2.0",
"express": "^5.1.0",
"joi": "^17.3.0",
"lodash": "^4.17.21",
"mysql": "^2.18.1",
"pretty-time": "^1.1.0",
"serialize-error": "^8.0.1",
"uuid": "^8.3.2",
"workerpool": "^8.0.0"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"chai": "^4.3.7",
"eslint": "^9.26.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.4.0",
"globals": "^16.0.0",
"jsdoc-to-markdown": "^8.0.0",
"mocha": "^10.4.0",
"npm-run-all": "^4.1.5",
"proxyquire": "^2.1.3",
"sinon": "^18.0.0"
},
"scripts": {
"docs": "node ./docs/generate",
"test": "mocha test/**/*.test.js test/**/**/*.test.js",
"lint": "eslint . --fix --max-warnings=0 --report-unused-disable-directives && echo '✔ Your .js files look good.'",
"custom-tests": "make test"
},
"overrides": {
"@opentelemetry/api": "^1.7.0",
"glob": "^13.0.0",
"acorn-import-assertions": "npm:acorn-import-attributes@^1.9.5",
"serialize-javascript": "^7.0.3",
"underscore": "^1.13.8"
}
}