forked from burstable/node-beanstalkd-worker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 2.08 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "beanstalkd-worker",
"version": "1.1.0",
"description": "High level library for running beanstalkd workers in Node.js",
"main": "src/index.js",
"dependencies": {
"babel-runtime": "^5.8.25",
"beanstalkd": "^2.0.1",
"bluebird": "~2.5.3",
"debug": "^2.2.0",
"lodash": "^3.10.1",
"generic-promise-pool": "1.1.0"
},
"devDependencies": {
"babel": "^5.8.23",
"babel-core": "^5.8.25",
"babel-eslint": "^4.1.3",
"chai": "^2.3.0",
"chai-as-promised": "^5.0.0",
"chai-datetime": "^1.4.0",
"eslint": "^1.5.1",
"istanbul": "^0.3.18",
"mocha": "^2.2.1",
"publish": "^0.5.0",
"sinon": "^1.14.1",
"sinon-as-promised": "^4.0.0",
"sinon-chai": "^2.8.0"
},
"options": {
"mocha": "--require scripts/mocha-bootload --check-leaks --colors --reporter spec"
},
"scripts": {
"prepublish": "npm run check && npm run build",
"check": "npm run lint && npm run test:unit",
"lint": "eslint src",
"build": "rm -rf lib/* && babel src --ignore test --optional bluebirdCoroutines,runtime --out-dir 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 --rm worker /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",
"restart-beanstalkd": "docker-compose kill beanstalkd && docker-compose start beanstalkd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/burstable/node-beanstalkd-worker.git"
},
"keywords": [
"beanstalkd",
"worker"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/burstable/node-beanstalkd-worker/issues"
},
"homepage": "https://github.com/burstable/node-beanstalkd-worker#readme"
}