This repository has been archived on 2022-03-12. You can view files and clone it, but cannot push or open issues or pull requests.

45 lines
1006 B
JSON
Raw Permalink Normal View History

2021-04-02 02:24:13 +03:00
{
"name": "tiny-queue",
"version": "0.2.1",
"description": "Simple FIFO queue implementation to avoid having to do shift() on an array, which is slow.",
"main": "index.js",
"scripts": {
"test": "tape test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/nolanlawson/tiny-queue.git"
},
"keywords": [
"queue",
"fifo"
],
"author": "Nolan Lawson <nolan.lawson@gmail.com>",
"license": "Apache 2",
"bugs": {
"url": "https://github.com/nolanlawson/tiny-queue/issues"
},
"homepage": "https://github.com/nolanlawson/tiny-queue",
"devDependencies": {
"tape": "^2.13.1"
},
"testling": {
"files": [
"test.js"
],
"browsers": [
"iexplore/8..latest",
"chrome/22..latest",
"chrome/canary",
"firefox/24..latest",
"firefox/nightly",
"opera/15..latest",
"opera/next",
"safari/5.0.5..latest",
"iphone/latest",
"ipad/latest",
"android-browser/latest"
]
}
}