-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
43 lines (42 loc) · 971 Bytes
/
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
{
"name": "couchbase-promises",
"longName": "Couchbase Promises",
"description": "An A+ Promises wrapper for the Couchbase SDK with added support for batch mutation operations.",
"version": "4.3.0",
"dependencies": {
"bluebird": "^3.5.0",
"couchbase": "~2.4.0",
"elv": "^1.0.1"
},
"devDependencies": {
"chai": "^3.5.0",
"istanbul": "^0.4.0",
"kew": "^0.7.0",
"mocha": "^2.4.5",
"q": "^1.4.1",
"rsvp": "^3.3.3"
},
"keywords": [
"couchbase",
"promises",
"bluebird",
"data",
"nosql",
"multi",
"batch"
],
"license": "MIT",
"main": "./lib/couchbase",
"peerDependencies": {
"couchbase": "2.4.x"
},
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/dsfields/couchbase-promises"
},
"scripts": {
"lint": "eslint ./**/*.js",
"test": "NODE_ENV=test istanbul cover _mocha tests/**/*.js"
}
}