UNPKG

arrayqeque

Version:

High-performance Deque (Double-Ended Queue) for DSA practice with O(1) operations

44 lines (43 loc) 936 B
{ "name": "arrayqeque", "version": "1.0.3", "description": "High-performance Deque (Double-Ended Queue) for DSA practice with O(1) operations", "main": "dist/index.js", "types": "dist/index.d.ts", "type": "module", "scripts": { "build": "tsc", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "prepublishOnly": "npm run build && npm test" }, "keywords": [ "deque", "queue", "stack", "data-structures", "dsa", "algorithms", "typescript", "circular-buffer" ], "author": "Pawan Kumar", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/carefree-ladka/arraydeque" }, "devDependencies": { "@types/jest": "^29.5.0", "@types/node": "^20.0.0", "jest": "^29.5.0", "ts-jest": "^29.1.0", "typescript": "^5.0.0" }, "files": [ "dist", "README.md", "LICENSE" ] }