forked from ceejbot/fivebeans
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.48 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
59
60
61
62
63
{
"name": "fivebeans",
"description": "beanstalkd client & worker daemon for node.",
"version": "1.3.1",
"author": "C J Silverio <ceejceej@gmail.com>",
"bin": {
"beanworker": "./bin/beanworker"
},
"bugs": "http://github.com/ceejbot/fivebeans/issues",
"config": {
"blanket": {
"pattern": [
"lib",
"index.js"
],
"data-cover-never": [
"node_modules",
"test",
"examples"
],
"output-reporter": "spec",
"travis-cov": {
"threshold": 90
}
}
},
"contributors": [
"Jon Keating <jon@licq.org>",
"Jevgenij Tsoi <jevgenij@virtusize.com>"
],
"dependencies": {
"js-yaml": "~3.3.1",
"lodash": "~3.9.3",
"semver": "~4.3.3",
"yargs": "~3.10.0"
},
"devDependencies": {
"blanket": "~1.1.7",
"jscs": "~1.13.1",
"mocha": "~2.2.5",
"mocoverage": "~1.0.0",
"must": "~0.12.0",
"travis-cov": "~0.2.5"
},
"keywords": [
"beanstalkd",
"jobs",
"work-queue",
"worker"
],
"license": "MIT",
"main": "index",
"repository": {
"type": "git",
"url": "git://github.com/ceejbot/fivebeans.git"
},
"scripts": {
"test": "mocha -t 8000 --check-leaks --ui exports --require blanket -R mocoverage test/test-*.js",
"test-cov": "mocha -t 20000 --require blanket -R travis-cov test/test-*.js",
"test-travis": "mocha -R spec -t 20000 test/test-*.js && npm run test-cov",
"lint": "jshint bin test examples lib && jscs bin lib"
}
}