queue-fifo
Version:
Javascript implementation of a queue data structure
38 lines (37 loc) • 941 B
JSON
{
"name": "queue-fifo",
"version": "0.2.6",
"description": "Javascript implementation of a queue data structure",
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"pretest": "npm run lint",
"test": "nyc mocha",
"lint": "eslint index.js test/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/jasonsjones/queue-fifo.git"
},
"keywords": [
"queue",
"FIFO",
"abstract data-type",
"data structure"
],
"author": "Jason Jones",
"license": "MIT",
"bugs": {
"url": "https://github.com/jasonsjones/queue-fifo/issues"
},
"homepage": "https://github.com/jasonsjones/queue-fifo",
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.16.0",
"mocha": "^6.1.4",
"nyc": "^14.1.1"
},
"dependencies": {
"dbly-linked-list": "0.3.4"
}
}