@jsonjoy.com/buffers
Version:
Various helper utilities for working with buffers and binary data
78 lines • 1.92 kB
JSON
{
"name": "@jsonjoy.com/buffers",
"publishConfig": {
"access": "public"
},
"version": "18.28.0",
"description": "Various helper utilities for working with buffers and binary data",
"author": {
"name": "streamich",
"url": "https://github.com/streamich"
},
"homepage": "https://github.com/streamich/json-joy/packages/buffers",
"repository": "streamich/json-joy",
"license": "Apache-2.0",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/streamich"
},
"keywords": [
"buffer",
"buffers",
"uint8array",
"binary",
"utf8",
"string",
"encoding",
"decoding",
"reader",
"writer",
"streaming"
],
"engines": {
"node": ">=10.0"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"typings": "lib/index.d.ts",
"files": [
"LICENSE",
"lib/"
],
"scripts": {
"clean": "npx rimraf lib typedocs coverage gh-pages yarn-error.log",
"build": "tsc -b tsconfig.build.json",
"typedoc": "typedoc",
"build:pages": "npx rimraf gh-pages && mkdir -p gh-pages && cp -r typedocs/* gh-pages && cp -r coverage gh-pages/coverage",
"deploy:pages": "gh-pages -d gh-pages",
"publish-coverage-and-typedocs": "yarn typedoc && yarn coverage && yarn build:pages && yarn deploy:pages",
"typecheck": "tsc -b --noEmit"
},
"peerDependencies": {
"tslib": "2"
},
"devDependencies": {
"json-pack-napi": "^0.0.2"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"moduleFileExtensions": [
"ts",
"js",
"tsx"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"transformIgnorePatterns": [
".*/node_modules/.*"
],
"testRegex": ".*/(__tests__|__jest__|demo)/.*(?<!\\.vi)\\.(test|spec)\\.tsx?$",
"rootDir": ".",
"testPathIgnorePatterns": [
"node_modules",
"\\.vi\\.(test|spec)\\.tsx?$"
]
}
}