forked from adaltas/node-hbase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.29 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": "hbase",
"version": "0.3.0",
"description": "HBase client using the REST connector",
"author": "David Worms <[email protected]>",
"license": "BSD-3-Clause",
"contributors": [
{
"name": "David Worms",
"email": "[email protected]"
},
{
"name": "Michael Kurze",
"email": "https://github.com/michaelku"
},
{
"name": "Michal Taborsky",
"email": "https://github.com/whizz"
},
{
"name": "Marc Trudel",
"email": "https://github.com/stelcheck"
},
{
"name": "Krisztina Hirth",
"email": "https://github.com/yellowbrickc"
}
],
"main": "./lib/index",
"engines": {
"node": ">= 0.1.90"
},
"optionalDependencies": {
"krb5": "^0.1.0"
},
"devDependencies": {
"coffeescript": "^2.0.1",
"each": "^0.6.1",
"mocha": "^4.0.1",
"should": "^13.1.2"
},
"bugs": {
"url": "https://github.com/adaltas/node-hbase/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/adaltas/node-hbase.git"
},
"homepage": "https://github.com/adaltas/node-hbase",
"scripts": {
"coffee": "./node_modules/.bin/coffee -b -o lib src",
"pretest": "./node_modules/.bin/coffee -b -o lib src",
"test": "NODE_ENV=test ./node_modules/.bin/mocha test/**/*.coffee"
}
}