UNPKG

loopback-connector-bull

Version:
87 lines (86 loc) 2.1 kB
{ "name": "loopback-connector-bull", "version": "1.0.0", "description": "Loopback Bull Connector", "license": "MIT", "repository": "https://github.com/mrbatista/loopback-connector-bull.git", "author": "Matteo Padovano <mrba7ista@gmail.com>", "engines": { "node": ">=8" }, "keywords": [ "StrongLoop", "Loopback", "Connector", "Queue", "Job", "Bull", "Redis" ], "files": [ "lib" ], "main": "lib/index.js", "typings": "lib/index.d.ts", "scripts": { "clean": "rimraf lib", "format": "prettier --write \"{src,test}/**/*.ts\"", "lint": "tslint --format verbose \"src/**/*.ts\"", "prepublishOnly": "npm run build", "build": "npm run clean && npm run lint && echo Using TypeScript && tsc --version && tsc --pretty", "test": "npm run build && nyc mocha --compilers ts:ts-node/register --recursive \"test/**/*.spec.ts\"", "watch": "npm run build -- --watch", "watch:test": "npm run test -- --watch", "semantic-release": "semantic-release" }, "dependencies": { "bluebird": "^3.5.1", "bull": "^3.4.2", "loopback-connector": "^4.4.0" }, "devDependencies": { "@loopback/testlab": "^0.10.4", "@semantic-release/git": "^7.0.8", "@types/bluebird": "^3.5.21", "@types/bull": "^3.3.12", "@types/chai": "^3.0.0", "@types/mocha": "^2.0.0", "@types/node": "^8.0.0", "chai": "^3.0.0", "coveralls": "^2.0.0", "dirty-chai": "^2.0.1", "loopback-datasource-juggler": "^3.23.0", "mocha": "^3.0.0", "nyc": "^10.0.0", "prettier": "^1.5.2", "rimraf": "^2.0.0", "semantic-release": "^15.13.3", "ts-node": "^3.0.0", "tslint": "^5.0.0", "tslint-config-prettier": "^1.1.0", "typescript": "^2.3.0" }, "publishConfig": { "access": "public" }, "nyc": { "include": [ "src/**/*.ts" ], "exclude": [ "lib", "src/**/*.d.ts" ], "extension": [ ".ts" ], "require": [ "ts-node/register" ], "reporter": [ "lcov", "text-summary" ], "all": true } }