UNPKG

nanobuffer

Version:

Lightweight, fixed-size, cyclic value buffer

41 lines (40 loc) 1.07 kB
{ "name": "nanobuffer", "version": "3.0.0", "description": "Lightweight, fixed-size, cyclic value buffer", "type": "module", "exports": "./src/index.js", "author": "Chris Barber <chris@cb1inc.com> (https://github.com/cb1kenobi)", "license": "MIT", "keywords": [ "buffer", "queue", "nano", "array", "list", "fixed", "cyclic" ], "scripts": { "coverage": "c8 npm run test", "lint": "eslint src test", "prepublishOnly": "npm run lint", "test": "npm run lint && mocha test/**/test-*.js --reporter spec" }, "devDependencies": { "c8": "^7.11.0", "chai": "^4.3.6", "eslint": "^8.10.0", "eslint-plugin-chai-expect": "^3.0.0", "eslint-plugin-mocha": "^10.0.3", "eslint-plugin-promise": "^6.0.0", "eslint-plugin-security": "^1.4.0", "mocha": "^9.2.1" }, "homepage": "https://github.com/cb1kenobi/nanobuffer", "bugs": "https://github.com/cb1kenobi/nanobuffer/issues", "repository": "https://github.com/cb1kenobi/nanobuffer", "engines": { "node": ">=14.15.0" } }