UNPKG

data-forge-redis

Version:

This library contains the redis extensions to Data-Forge that allow it to directly read dat from redis database in Node.js.

74 lines (73 loc) 2.21 kB
{ "name": "data-forge-redis", "version": "0.0.16", "description": "This library contains the redis extensions to Data-Forge that allow it to directly read dat from redis database in Node.js.", "main": "build/index.js", "types": "build/index.d.ts", "scripts": { "c": "npm run clean", "clean": "rm -rf build/*", "b": "npm run build", "build": "tsc", "clean-build": "rm -rf build/* && tsc", "build:watch": "tsc --watch", "clean-build:watch": "rm -rf build/* && tsc --watch", "t": "npm run test", "test": "nyc mocha --opts ./src/test/mocha.opts", "tw": "npm run test:watch", "test:watch": "nyc mocha --watch --opts ./src/test/mocha.opts", "api-docs": "typedoc --options typedoc.json --out docs/api ./src/index.ts", "prepublishOnly": "npm run clean && npm run build", "coveralls": "nyc report --reporter=text-lcov | coveralls" }, "repository": { "type": "git", "url": "git+https://github.com/tyolab/data-forge-redis.git" }, "keywords": [ "data-forge", "redis", "extension", "trading" ], "author": "eric@tyo.com.au", "license": "MIT", "bugs": { "url": "https://github.com/tyolab/data-forge-redis/issues" }, "homepage": "https://github.com/tyolab/data-forge-redis#readme", "dependencies": { "chai": "^4.1.2", "data-forge": "^1.8.12", "node-programmer": "0.0.21", "redis": "^3.0.2" }, "devDependencies": { "@types/chai": "^4.1.4", "@types/mocha": "^2.2.43", "@types/mock-require": "^2.0.0", "@types/node": "8.0.28", "mocha": "^5.2.0", "mock-require": "^3.0.2", "nyc": "^13.0.1", "ts-node": "3.3.0", "typescript": "^4.6.3" }, "nyc": { "extension": [ ".ts" ], "exclude": [ "**/*.d.ts", "src/test/**/*", "build/**/*", "docs/**/*", "coverage/**/*" ], "reporter": [ "text-summary", "html" ], "all": true } }