UNPKG

pg-boss

Version:

Queueing jobs in Node.js using PostgreSQL like a boss

59 lines (58 loc) 1.47 kB
{ "name": "pg-boss", "version": "3.1.1", "description": "Queueing jobs in Node.js using PostgreSQL like a boss", "main": "./lib/index.js", "engines": { "node": ">=6.0.0", "npm": ">=5.0.0" }, "dependencies": { "bluebird": "^3.5.2", "pg": "^7.4.1", "uuid": "^3.2.1" }, "devDependencies": { "babel-cli": "^6.24.1", "babel-core": "^6.24.1", "babel-plugin-istanbul": "^4.1.1", "babel-preset-es2015": "^6.24.1", "chai": "^3.5.0", "coveralls": "^2.13.0", "cross-env": "^4.0.0", "mocha": "^3.2.0", "nyc": "^10.2.2" }, "scripts": { "test": "cross-env NODE_ENV=test nyc mocha --slow 10000", "forcover": "cross-env NODE_ENV=test nyc npm test && nyc report --reporter=text-lcov | coveralls", "compile": "babel -d lib/ src/", "prepublish": "npm run compile", "export-schema": "node ./scripts/construct.js", "export-migration": "node ./scripts/migrate.js", "export-rollback": "node ./scripts/rollback.js" }, "nyc": { "require": [ "babel-register" ], "sourceMap": false, "instrument": false }, "repository": { "type": "git", "url": "git+https://github.com/timgit/pg-boss.git" }, "keywords": [ "postgresql", "queue", "job" ], "author": "timgit", "license": "MIT", "bugs": { "url": "https://github.com/timgit/pg-boss/issues" }, "homepage": "https://github.com/timgit/pg-boss#readme", "types": "./types.d.ts" }