forked from tarantool/node-tarantool-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·46 lines (46 loc) · 1.11 KB
/
package.json
File metadata and controls
executable file
·46 lines (46 loc) · 1.11 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
{
"name": "tarantool-driver",
"version": "3.0.0",
"description": "Tarantool driver for 1.7",
"main": "index.js",
"scripts": {
"lint": "eslint ./lib ./test",
"test": "istanbul cover --report lcov _mocha",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"benchmark-read": "node benchmark/read",
"benchmark-write": "node benchmark/write"
},
"repository": {
"type": "git",
"url": "https://github.com/tarantool/node-tarantool-driver.git"
},
"keywords": [
"tarantool",
"driver",
"db",
"msgpack"
],
"author": "KlonD90",
"license": "MIT",
"bugs": {
"url": "https://github.com/tarantool/node-tarantool-driver/issues"
},
"homepage": "https://github.com/tarantool/node-tarantool-driver",
"dependencies": {
"debug": "^2.6.8",
"denque": "^1.2.1",
"lodash": "^4.17.4",
"msgpack-lite": "^0.1.20"
},
"devDependencies": {
"benchmark": "^2.1.0",
"chai": "^4.1.0",
"coveralls": "^2.13.1",
"eslint": "^2.5.3",
"ioredis": "^3.1.2",
"istanbul": "^0.4.5",
"mocha": "^2.2.4",
"nanotimer": "^0.3.14",
"sinon": "^3.0.0"
}
}