CoolFace
Apppublic

strong-tie/inbound-calls

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
package.json53 linesDownload Raw Back to sonic-boom
1{2  "name": "sonic-boom",3  "version": "4.2.0",4  "description": "Extremely fast utf8 only stream implementation",5  "main": "index.js",6  "type": "commonjs",7  "types": "types/index.d.ts",8  "scripts": {9    "test": "npm run test:types && standard && npm run test:unit",10    "test:unit": "tap",11    "test:types": "tsc && tsd"12  },13  "pre-commit": [14    "test"15  ],16  "repository": {17    "type": "git",18    "url": "git+https://github.com/pinojs/sonic-boom.git"19  },20  "keywords": [21    "stream",22    "fs",23    "net",24    "fd",25    "file",26    "descriptor",27    "fast"28  ],29  "author": "Matteo Collina <hello@matteocollina.com>",30  "license": "MIT",31  "bugs": {32    "url": "https://github.com/pinojs/sonic-boom/issues"33  },34  "homepage": "https://github.com/pinojs/sonic-boom#readme",35  "devDependencies": {36    "@fastify/pre-commit": "^2.1.0",37    "@sinonjs/fake-timers": "^13.0.1",38    "@types/node": "^22.0.0",39    "fastbench": "^1.0.1",40    "proxyquire": "^2.1.3",41    "standard": "^17.0.0",42    "tap": "^18.2.0",43    "tsd": "^0.31.0",44    "typescript": "^5.0.2"45  },46  "dependencies": {47    "atomic-sleep": "^1.0.0"48  },49  "tsd": {50    "directory": "./types"51  }52}53