-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 859 Bytes
/
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
{
"name": "moleculer-tracingbrokercalls",
"version": "1.0.10",
"description": "Middleware for [moleculerjs](https://moleculer.services). It generates Tracing-Spans for each call made by the decorated broker.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc",
"upload-package": "npm run test && npm publish",
"prepublishOnly": "rm -rf dist && tsc",
"test": "npm run build && jest --config jest.config.js"
},
"files": [
"dist/**/*"
],
"publishConfig": {
"registry": "http://192.168.100.239:4873/"
},
"author": "Matthias Endres",
"license": "ISC",
"devDependencies": {
"jest": "^29.5.0",
"@types/node": "^20.1.0",
"@types/jest": "^29.5.1",
"typescript": "^5.0.4",
"moleculer": "^0.14.29",
"ts-jest": "^29.1.0"
},
"dependencies": {}
}