-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
executable file
·58 lines (58 loc) · 1.39 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
{
"name": "tarantool-driver",
"version": "3.1.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",
"tarantool client",
"tarantool connector",
"in memory",
"in-memory",
"in memory storage",
"in-memory storage",
"in memory database",
"in-memory database",
"database"
],
"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",
"int64-buffer": "^1.0.1",
"lodash": "^4.17.4",
"msgpack-lite": "^0.1.20",
"uuid": "^9.0.0"
},
"devDependencies": {
"benchmark": "^2.1.4",
"chai": "^4.1.0",
"coveralls": "^2.13.3",
"eslint": "^2.5.3",
"ioredis": "^3.1.2",
"istanbul": "^0.4.5",
"mocha": "^2.2.4",
"nanotimer": "^0.3.14",
"nyc": "^15.1.0",
"sinon": "^3.0.0"
}
}