forked from ceejbot/fivebeans
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.21 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
{
"name": "fivebeans-cahva",
"description": "beanstalkd client & worker daemon for node. forked version with updated dependencies.",
"version": "1.5.4",
"author": "C J Silverio <[email protected]>",
"bin": {
"beanworker": "./bin/beanworker"
},
"bugs": "http://github.com/cahva/fivebeans/issues",
"contributors": [
"Jon Keating <[email protected]>",
"Jevgenij Tsoi <[email protected]>",
"Markku Virtanen <[email protected]>"
],
"dependencies": {
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"semver": "~7.5.4",
"yargs": "~17.7.2"
},
"devDependencies": {
"coveralls": "~3.1.1",
"eslint": "~8.56.0",
"mocha": "~10.2.0",
"must": "~0.13.4",
"nyc": "~15.1.0"
},
"homepage": "https://github.com/cahva/fivebeans#readme",
"keywords": [
"beanstalkd",
"jobs",
"work-queue",
"worker"
],
"license": "MIT",
"main": "index",
"repository": {
"type": "git",
"url": "git://github.com/cahva/fivebeans.git"
},
"scripts": {
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint bin lib test index.js",
"test": "nyc mocha -t 8000 --exit -R spec test/",
"travis": "npm run lint && npm test"
}
}