dogmaql.driver.redis
Version:
Redis driver for DogmaQL (Dogma Query Language).
84 lines (83 loc) • 1.97 kB
JSON
{
"name": "dogmaql.driver.redis",
"version": "0.3.0",
"description": "Redis driver for DogmaQL (Dogma Query Language).",
"homepage": "http://dogmadb.com",
"author": {
"name": "Justo Labs",
"email": "hello@justolabs.com",
"url": "http://dogmadb.com"
},
"contributors": [
{
"name": "Raúl G. González",
"email": "raulggonzalez@justolabs.com",
"url": ""
}
],
"keywords": [
"Databases",
"DogmaQL",
"Full-text search",
"Queues",
"Redis",
"Timeseries"
],
"bugs": {
"url": "https://bitbucket.org/dogmadb/dogmaql-driver-redis/issues",
"email": "issues@dogmadb.com"
},
"repository": {
"type": "git",
"url": "https://bitbucket.org/dogmadb/dogmaql-driver-redis.git"
},
"preferGlobal": false,
"main": "src/index.js",
"files": [
"src"
],
"engines": {
"node": ">= 8.0",
"npm": ">= 3.10"
},
"dependencies": {
"async": ">= 2.6",
"dogmalang": "*",
"dogmaql.driver": ">= 0.1",
"dogmaql.syn": ">= 0.8",
"ioredis": ">= 3.2",
"moment": ">= 2.20"
},
"devDependencies": {
"babel-cli": ">= 6.26",
"babel-preset-env": "*",
"eslint": ">= 4.11",
"justo": ">= 1.0.0-alpha2.0",
"justo.assert": ">= 1.0.0-alpha2.0",
"justo.spy": ">= 1.0.0-alpha2.0",
"justo.plugin.babel": ">= 1.0.0-alpha2.0",
"justo.plugin.cli": ">= 1.0.0-alpha2.0",
"justo.plugin.docker": ">= 1.0.0-alpha2.0",
"justo.plugin.eslint": ">= 1.0.0-alpha2.0",
"justo.plugin.fs": ">= 1.0.0-alpha2.0",
"justo.plugin.npm": ">= 1.0.0-alpha2.0",
"nyc": ">= 11.3"
},
"scripts": {
"test": "justojs r test",
"coverage": "justojs r make && node_modules/.bin/nyc justojs r test",
"pipelines": "node_modules/.bin/nyc justojs r test"
},
"nyc": {
"check-coverage": true,
"cache": true,
"exclude": [
"Justo.cat.js",
"**/test/**/*.js"
],
"reporter": [
"lcov",
"text"
]
}
}