sockethub/sockethub

View on GitHub
packages/crypto/package.json

Summary

Maintainability
Test Coverage
{
    "name": "@sockethub/crypto",
    "description": "Crypto functions and helpers for Sockethub",
    "version": "1.0.0-alpha.4",
    "private": false,
    "author": "Nick Jennings <nick@silverbucket.net>",
    "license": "MIT",
    "main": "dist/index.js",
    "types": "dist/index.d.ts",
    "files": [
        "dist/",
        "src/"
    ],
    "keywords": [
        "sockethub",
        "messaging",
        "redis",
        "data lyer",
        "rpc",
        "data store"
    ],
    "repository": {
        "type": "git",
        "url": "git+https://github.com/sockethub/sockethub.git",
        "directory": "packages/data-layer"
    },
    "homepage": "https://github.com/sockethub/sockethub/tree/master/packages/data-layer",
    "dependencies": {
        "@sockethub/schemas": "workspace:3.0.0-alpha.4",
        "object-hash": "^3.0.0"
    },
    "scripts": {
        "clean": "rm -rf dist coverage",
        "test": "c8 -x \"src/**/*.test.*\" mocha -r ts-node/register src/*.test.ts && pnpm coverage",
        "coverage": "c8 check-coverage --statements 90 --branches 85 --functions 80 --lines 90",
        "build": "tsc"
    },
    "engines": {
        "node": ">= 16"
    },
    "devDependencies": {
        "@types/chai": "4.3.11",
        "@types/debug": "4.1.12",
        "@types/mocha": "10.0.6",
        "@types/node": "20.10.5",
        "@types/object-hash": "3.0.6",
        "@types/sinon": "17.0.2",
        "c8": "8.0.1",
        "chai": "4.3.10",
        "mocha": "10.2.0",
        "sinon": "17.0.1",
        "ts-node": "10.9.2",
        "typescript": "5.3.3"
    }
}