CoolFace
Apppublic

HarshvardhanCn01/Voice-Assistant

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
package.json69 linesDownload Raw Back to peek-readable
1{2  "name": "peek-readable",3  "version": "5.3.1",4  "description": "Read and peek from a readable stream",5  "author": {6    "name": "Borewit",7    "url": "https://github.com/Borewit"8  },9  "funding": {10    "type": "github",11    "url": "https://github.com/sponsors/Borewit"12  },13  "scripts": {14    "clean": "del-cli 'lib/**/*.js' 'lib/**/*.js.map' 'lib/**/*.d.ts' 'test/**/*.js' 'test/**/*.js.map' 'coverage' '.nyc_output'",15    "build": "npm run clean && npm run compile",16    "compile-src": "tsc -p lib",17    "compile-test": "tsc -p test",18    "compile": "yarn run compile-src && yarn run compile-test",19    "lint-ts": "biome check",20    "lint-md": "remark -u preset-lint-recommended .",21    "lint": "yarn run lint-md && yarn run lint-ts",22    "test": "mocha",23    "test-coverage": "c8 npm run test",24    "start": "yarn run compile && yarn run lint && yarn run cover-test"25  },26  "engines": {27    "node": ">=14.16"28  },29  "repository": {30    "type": "git",31    "url": "git+https://github.com/Borewit/peek-readable"32  },33  "license": "MIT",34  "type": "module",35  "exports": "./lib/index.js",36  "types": "lib/index.d.ts",37  "bugs": {38    "url": "https://github.com/Borewit/peek-readable/issues"39  },40  "files": [41    "lib/**/*.js",42    "lib/**/*.d.ts"43  ],44  "devDependencies": {45    "@biomejs/biome": "1.9.3",46    "@types/chai": "^5.0.0",47    "@types/chai-as-promised": "^8.0.1",48    "@types/mocha": "^10.0.7",49    "@types/node": "^22.7.5",50    "c8": "^10.1.2",51    "chai": "^5.1.1",52    "chai-as-promised": "^8.0.0",53    "del-cli": "^6.0.0",54    "mocha": "^10.7.3",55    "remark-cli": "^12.0.1",56    "remark-preset-lint-recommended": "^7.0.0",57    "source-map-support": "^0.5.21",58    "ts-node": "^10.9.2",59    "typescript": "^5.6.3"60  },61  "keywords": [62    "readable",63    "buffer",64    "stream",65    "read"66  ],67  "packageManager": "yarn@4.3.1"68}69