forked from balassy/couchbase-promise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.15 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
{
"name": "couchbase-promise",
"version": "0.2.1",
"description": "A promise-based async library for Couchbase and node.js.",
"main": "index",
"repository": {
"type": "git",
"url": "https://github.com/balassy/couchbase-promise.git"
},
"keywords": [
"couchbase",
"promise",
"async"
],
"engines": {
"node": ">=0.12.2"
},
"license": "MIT",
"author": {
"name": "György Balássy",
"email": "[email protected]",
"url": "http://gyorgybalassy.wordpress.com/"
},
"bugs": {
"url": "https://github.com/balassy/couchbase-promise/issues"
},
"homepage": "https://github.com/balassy/couchbase-promise",
"dependencies": {
"bluebird": "^2.9.24",
"colors": "^1.0.3",
"couchbase": "^2.0.7",
"joi": "^6.1.1"
},
"devDependencies": {
"chai": "^2.2.0",
"chai-as-promised": "^4.3.0",
"coffee-script": "^1.9.1",
"del": "^1.1.1",
"gulp": "^3.8.11",
"gulp-coffee": "^2.3.1",
"gulp-coffeelint": "^0.4.0",
"gulp-mocha": "^2.0.1",
"mocha": "^2.2.4",
"node-uuid": "^1.4.3",
"run-sequence": "^1.0.2"
},
"scripts": {
"prepublish": "gulp build"
}
}