-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.08 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.08 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
{
"name": "@multiversx/sdk-nestjs-monitoring",
"version": "3.0.1-beta.3",
"description": "Multiversx SDK Nestjs monitoring package",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"test": "jest --config=../../jest.config.json --passWithNoTests monitoring/*",
"build": "tsc",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"lint:fix": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/multiversx/mx-sdk-nestjs.git"
},
"keywords": [
"multiversx",
"nestjs",
"monitoring"
],
"author": "MultiversX",
"license": "GPL-3.0-or-later",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.16.0",
"eslint": "^8.9.0",
"typescript": "^4.3.5"
},
"dependencies": {
"prom-client": "^14.0.1",
"winston": "^3.7.2",
"winston-daily-rotate-file": "^4.6.1"
},
"peerDependencies": {
"@nestjs/common": "^10.x"
},
"publishConfig": {
"access": "public"
}
}