forked from basho/riak-nodejs-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.54 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
{
"name": "basho-riak-client",
"description": "Basho's officially supported NodeJS client for Riak",
"version": "1.5.1",
"author": "Brian Roach <[email protected]>",
"contributors": [
"Luke Bakken <[email protected]>",
"Bryce Kerley <[email protected]>"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/basho/riak-nodejs-client.git"
},
"homepage": "https://github.com/basho/riak-nodejs-client/wiki",
"keywords": [
"riak",
"node",
"nodejs",
"distributed",
"nosql",
"driver",
"riak-nodejs-client",
"client",
"basho"
],
"dependencies": {
"bytebuffer": "~3.5",
"hashmap": "~2.0",
"joi": "~6.0",
"linkedlist": "~1.0",
"protobufjs": "~3.8",
"winston": "~0.9"
},
"devDependencies": {
"benchmark": "^1.0.0",
"grunt": "latest",
"grunt-benchmark": "^0.3.0",
"grunt-cli": "latest",
"grunt-contrib-jshint": "latest",
"grunt-contrib-watch": "latest",
"grunt-contrib-yuidoc": "latest",
"grunt-mocha-test": "latest",
"jshint": "~2.6",
"mocha": "~2.2",
"randomstring": "^1.0.5"
},
"engines": {
"node": "~0.12"
},
"files": [
"LICENSE",
"README.md",
"index.js",
"lib/*.js",
"lib/commands/",
"lib/core/",
"lib/protobuf/*.js",
"lib/protobuf/riak_pb/src/*.proto",
"lib/protobuf/riak_pb/src/*.csv"
],
"bugs": {
"url": "https://github.com/basho/riak-nodejs-client/issues"
},
"main": "index.js",
"directories": {
"lib": "./lib"
},
"scripts": {}
}