-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
72 lines (72 loc) · 1.58 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
64
65
66
67
68
69
70
71
72
{
"name": "nodestalker",
"description": "A Beanstalk client for node.js.",
"keywords": [
"beanstalkd",
"queue"
],
"version": "0.1.22",
"author": "Pascal Opitz <[email protected]> (http://blog.pascalopitz.com)",
"contributors": [
{
"name": "Andrew Houghton",
"github": "https://github.com/aahoughton"
},
{
"name": "Amjad Mohamed",
"github": "https://github.com/andho"
},
{
"name": "Jean-Sébastien Ney",
"github": "https://github.com/jney"
},
{
"name": "Nate McQuay",
"github": "https://github.com/nmcquay"
},
{
"name": "Anton Lopyrev",
"github": "https://github.com/tokudu"
},
{
"name": "Justin Walsh",
"github": "https://github.com/justinwalsh"
},
{
"name": "Brad Dwyer",
"github": "https://github.com/yeldarby"
},
{
"name": "Joel Bradshaw",
"github": "https://github.com/cincodenada"
},
{
"name": "Alejandro Santiago",
"github": "https://github.com/alemures"
}
],
"repository": {
"type": "git",
"url": "git://github.com/pascalopitz/nodestalker.git"
},
"main": "./lib/beanstalk_client",
"dependencies": {
"js-yaml": "^3.13.1"
},
"scripts": {
"docs": "./node_modules/.bin/docco ./lib/beanstalk_client.js",
"test": "find tests/test_*.js | xargs -n1 node"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/pascalopitz/nodestalker/raw/master/LICENSE"
}
],
"engines": {
"node": ">=0.11"
},
"devDependencies": {
"docco": "^0.8.0"
}
}