-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.2 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
{
"name": "simple-pool",
"description": "Simple Pooling Solution for a very simple distribution/loadbalancing of whatever you want",
"version": "0.1.1",
"author": {
"name": "Valiton GmbH",
"url": "http://www.valiton.com"
},
"contributors": [
{
"name": "Bastian Behrens",
"email": "[email protected]"
}
],
"maintainers": [
{
"name": "Bastian Behrens",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "git://github.com/valiton/node-simple-pool.git"
},
"bugs": {
"url": "https://github.com/valiton/node-simple-pool/issues"
},
"main": "lib/simplepool.js",
"engines": {
"node": ">= 0.8.0"
},
"dependencies": {
"random-tools": "0.0.5"
},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-contrib-coffee": "~0.4.0",
"grunt-contrib-clean": "~0.4.0",
"grunt-coffeelint": "~0.0.6",
"grunt-contrib-connect": "~0.3.0",
"grunt-jsdoc": "~0.3.1",
"grunt-jasmine-node": "~0.1.0",
"jasmine-matchers": "~0.2.1"
},
"keywords": [
"simplepool",
"pool",
"simple",
"distribute",
"loadbalancing"
],
"scripts": {
"test": "grunt default"
}
}