rocket.chat.mqtt
Version:
It's a MQTT Server, using redis to scale horizontally.
53 lines (52 loc) • 1.44 kB
JSON
{
"name": "denque",
"version": "1.3.0",
"description": "The fastest javascript implementation of a double-ended queue. Maintains compatability with deque.",
"main": "index.js",
"engines": {
"node": ">=0.10"
},
"keywords": [
"data-structure",
"data-structures",
"queue",
"double",
"end",
"ended",
"deque",
"denque",
"double-ended-queue"
],
"scripts": {
"test": "istanbul cover --report lcov _mocha && npm run typescript",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"typescript": "tsc --project ./test/type/tsconfig.json",
"benchmark_thousand": "node benchmark/thousand",
"benchmark_2mil": "node benchmark/two_million",
"benchmark_splice": "node benchmark/splice",
"benchmark_remove": "node benchmark/remove",
"benchmark_removeOne": "node benchmark/removeOne"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Salakar/denque.git"
},
"author": {
"name": "Mike Diarmid",
"email": "mike.diarmid@gmail.com",
"url": "http://github.com/Salakar/"
},
"license": "APACHE-2.0",
"bugs": {
"url": "https://github.com/Salakar/denque/issues"
},
"homepage": "https://github.com/Salakar/denque#readme",
"devDependencies": {
"benchmark": "^2.1.0",
"coveralls": "^2.13.1",
"double-ended-queue": "^2.1.0-0",
"istanbul": "^0.4.4",
"mocha": "^3.0.0",
"typescript": "^2.9.1"
}
}