Files
klz-cables.com/.pnpm-store/v10/files/9a/254478dc50e08e973c47ff0cddc0da80a090f46574dd05acf4665c3c1c47c16402e9a40fdf97c8a802982404f553e2060fdbcadf99e3996c5f21eefe0da67d
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

90 lines
2.3 KiB
Plaintext

{
"name": "strtok3",
"version": "8.1.0",
"description": "A promise based streaming tokenizer",
"author": {
"name": "Borewit",
"url": "https://github.com/Borewit"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/Borewit"
},
"scripts": {
"clean": "del-cli 'lib/**/*.js' 'lib/**/*.js.map' 'lib/**/*.d.ts' 'test/**/*.js' 'test/**/*.js.map'",
"compile-src": "tsc -p lib",
"compile-test": "tsc -p test",
"compile": "yarn run compile-src && yarn run compile-test",
"build": "yarn run clean && yarn run compile",
"eslint": "eslint lib test",
"lint-md": "remark -u preset-lint-recommended .",
"lint-ts": "biome check",
"lint": "yarn run lint-md && yarn run lint-ts",
"fix": "yarn run biome lint --write",
"test": "mocha",
"test-coverage": "c8 yarn run test",
"send-codacy": "c8 report --reporter=text-lcov | codacy-coverage",
"start": "yarn run compile && yarn run lint && yarn run cover-test"
},
"engines": {
"node": ">=16"
},
"repository": {
"type": "git",
"url": "https://github.com/Borewit/strtok3.git"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"node": "./lib/index.js",
"default": "./lib/core.js"
},
"./core": "./lib/core.js"
},
"types": "lib/index.d.ts",
"files": [
"lib/**/*.js",
"lib/**/*.d.ts"
],
"bugs": {
"url": "https://github.com/Borewit/strtok3/issues"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@types/chai": "^4.3.17",
"@types/debug": "^4.1.12",
"@types/mocha": "^10.0.7",
"@types/node": "^22.2.0",
"c8": "^10.1.2",
"chai": "^5.1.1",
"del-cli": "^5.1.0",
"mocha": "^10.7.3",
"remark-cli": "^12.0.1",
"remark-preset-lint-recommended": "^7.0.0",
"token-types": "^6.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"uint8array-extras": "^1.4.0"
},
"dependencies": {
"@tokenizer/token": "^0.3.0",
"peek-readable": "^5.1.4"
},
"keywords": [
"tokenizer",
"reader",
"token",
"async",
"promise",
"parser",
"decoder",
"binary",
"endian",
"uint",
"stream",
"streaming"
],
"packageManager": "yarn@4.3.1"
}