-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.6 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.6 KB
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
73
{
"name": "basho-riak-client",
"description": "Basho's officially supported NodeJS client for Riak",
"version": "2.4.0",
"author": "Brian Roach <roach@basho.com>",
"contributors": [
"Luke Bakken <luke@bakken.io>",
"Bryce Kerley <bkerley@brycekerley.net>"
],
"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": {
"async": "~2.0",
"backoff": "~2.5",
"bytebuffer": "~5.0",
"hashmap": "~2.0",
"joi": "~6.0",
"long": "~3.2",
"protobufjs": "~5.0",
"winston": "~2.2"
},
"devDependencies": {
"benchmark": "latest",
"grunt": "latest",
"grunt-benchmark": "latest",
"grunt-cli": "latest",
"grunt-contrib-jshint": "latest",
"grunt-contrib-watch": "latest",
"grunt-contrib-yuidoc": "latest",
"grunt-mocha-test": "latest",
"jshint": "latest",
"mocha": "~3.1",
"randomstring": "~1.1",
"yuidocjs": "latest"
},
"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": {}
}