beanstalkd
Version:
A beanstalkd client for Node.js with promises
57 lines (56 loc) • 1.95 kB
JSON
{
"name": "beanstalkd",
"version": "2.2.5",
"description": "A beanstalkd client for Node.js with promises",
"main": "lib/client.js",
"dependencies": {
"babel-runtime": "^5.8.25",
"beanstalkd-protocol": "^1.0.1",
"bluebird": "^3.4.7",
"debug": "^2.2.0",
"js-yaml": "^3.13.1",
"lodash.camelcase": "^4.3.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.1",
"babel-preset-async-to-bluebird": "^1.1.0",
"babel-preset-es2015-node4": "^2.1.1",
"babel-register": "^6.18.0",
"chai": "^2.3.0",
"chai-as-promised": "^5.0.0",
"chai-datetime": "^1.4.0",
"eslint": "^4.18.2",
"istanbul": "^0.3.18",
"mocha": "^2.2.1",
"publish": "^0.5.0",
"sinon": "^1.14.1",
"sinon-chai": "^2.8.0"
},
"options": {
"mocha": "--require scripts/mocha-bootload --check-leaks --colors --reporter spec"
},
"scripts": {
"check": "npm run lint && npm run test:unit",
"lint": "eslint src",
"build": "rm -rf lib/* && babel src -d lib",
"cover": "NODE_PATH=src NODE_ENV=test istanbul cover _mocha -- $npm_package_options_mocha test/unit/*.test.js test/unit/**/*.test.js",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "NODE_PATH=src NODE_ENV=test mocha $npm_package_options_mocha test/unit/*.test.js test/unit/**/*.test.js",
"test:integration": "docker-compose run client /bin/sh -c \"npm run test:integration:raw\"",
"test:integration:raw": "NODE_ENV=test mocha $npm_package_options_mocha test/integration/*.test.js test/integration/**/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/burstable/node-beanstalkd-client.git"
},
"keywords": [
"beanstalkd"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/burstable/node-beanstalkd-client/issues"
},
"homepage": "https://github.com/burstable/node-beanstalkd-client#readme"
}