UNPKG

@vechain/sdk-logging

Version:

This module provides functionality to logging data for vechain-sdk

39 lines 1.34 kB
{ "name": "@vechain/sdk-logging", "version": "2.0.7", "description": "This module provides functionality to logging data for vechain-sdk", "author": "VeChain Foundation", "license": "MIT", "homepage": "https://github.com/vechain/vechain-sdk-js", "repository": { "type": "git", "url": "github:vechain/vechain-sdk-js" }, "keywords": [ "VeChain", "logging", "logs" ], "main": "dist/index.js", "module": "dist/index.mjs", "types": "dist/index.d.ts", "files": [ "dist", "src", "package.json", "README.md", "LICENSE" ], "scripts": { "build": "rm -rf ./dist && tsup-node src/index.ts --format cjs,esm --dts", "lint": "eslint", "format": "prettier --write src/**/*.ts tests/**/*.ts", "test:unit": "rm -rf ./coverageUnit && jest --coverage --coverageDirectory=coverageUnit --group=unit", "test:integration": "rm -rf ./coverageIntegration && jest --coverage --coverageDirectory=coverageIntegration --group=integration", "test:browser": "rm -rf ./coverage && jest --coverage --coverageDirectory=coverage --group=integration --group=unit --config ./jest.config.browser.js", "test": "rm -rf ./coverage && jest --coverage --coverageDirectory=coverage --group=integration --group=unit" }, "dependencies": { "@vechain/sdk-errors": "2.0.7" } }