UNPKG

dtrim

Version:

A tool for trimming deep/lenghty javascript structures. Some potential usages are: debugging, logging or data sanitization.

60 lines (59 loc) 1.33 kB
{ "name": "dtrim", "version": "1.13.3", "description": "A tool for trimming deep/lenghty javascript structures. Some potential usages are: debugging, logging or data sanitization.", "keywords": [ "trimming", "sanitization", "sanitize", "deep trim", "truncate" ], "main": "lib/index.js", "types": "lib/index.d.ts", "scripts": { "build": "rm -rf lib && tsc", "test": "ava", "format": "prettier --write .", "format:check": "prettier --check .", "benchmark": "ts-node tools/benchmark.ts", "prepublish": "npm run build", "semantic-release": "semantic-release" }, "files": [ "lib" ], "repository": { "type": "git", "url": "https://github.com/runk/dtrim" }, "author": "Dmitry Shirokov <deadrunk@gmail.com>", "contributors": [ "Sam Chung @samchungy" ], "license": "MIT", "devDependencies": { "@types/benchmark": "2.1.5", "@types/lodash": "4.17.23", "@types/node": "24.10.9", "ava": "^6.0.0", "benchmark": "2.1.4", "lodash": "4.17.23", "prettier": "^3.0.0", "semantic-release": "25.0.3", "ts-node": "10.9.2", "typescript": "5.9.3" }, "ava": { "extensions": [ "ts" ], "files": [ "**/*.test.ts" ], "require": [ "ts-node/register" ] }, "dependencies": {} }