-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathpackage.json
46 lines (46 loc) · 1.11 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
{
"name": "fivebeans",
"description": "beanstalkd client & worker daemon for node.",
"version": "1.5.0",
"author": "C J Silverio <[email protected]>",
"bin": {
"beanworker": "./bin/beanworker"
},
"bugs": "http://github.com/ceejbot/fivebeans/issues",
"contributors": [
"Jon Keating <[email protected]>",
"Jevgenij Tsoi <[email protected]>"
],
"dependencies": {
"js-yaml": "~3.6.1",
"lodash": "~4.15.0",
"semver": "~5.3.0",
"yargs": "~5.0.0"
},
"devDependencies": {
"coveralls": "~2.11.12",
"eslint": "~2.13.1",
"mocha": "~3.0.2",
"must": "~0.13.2",
"nyc": "~8.1.0"
},
"homepage": "https://github.com/ceejbot/fivebeans#readme",
"keywords": [
"beanstalkd",
"jobs",
"work-queue",
"worker"
],
"license": "MIT",
"main": "index",
"repository": {
"type": "git",
"url": "git://github.com/ceejbot/fivebeans.git"
},
"scripts": {
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint bin lib test index.js",
"test": "nyc mocha -t 8000 -R spec test/",
"travis": "npm run lint && npm test"
}
}