-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.25 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.25 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
{
"name": "couchbase-driver",
"description": "An improved version of the official Couchbase driver",
"version": "0.5.2",
"homepage": "https://github.com/bojand/couchbase-driver",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/bojand/couchbase-driver.git"
},
"bugs": {
"url": "http://github.com/bojand/couchbase-driver/issues"
},
"engines": {
"node": ">=6.0.0"
},
"main": "index.js",
"author": {
"name": "Bojan Djurkovic <dbojan@gmail.com>"
},
"scripts": {
"test": "TEST_USE_COUCHBASE_MOCK=true ava -v -s",
"docs": "jsdoc2md \"index.js\" --heading-depth 3 --template readme.hbs > readme.md"
},
"dependencies": {
"async": "^2.6.1",
"debug": "^3.2.6",
"lodash.defaults": "^4.2.0",
"promisify-call": "^2.0.4",
"semver": "^5.6.0"
},
"peerDependencies": {
"couchbase": "^2.4.0"
},
"devDependencies": {
"ava": "~1.0.0",
"couchbase": "^2.6.2",
"jsdoc-to-markdown": "^4.0.0",
"lodash": "^4.17.11",
"standard": "^12.0.0"
},
"ava": {
"files": [
"test/*.test.js"
]
},
"directories": {
"test": "test"
},
"keywords": [
"couchbase",
"document",
"database",
"odm",
"data",
"datastore",
"db"
]
}