-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.46 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
{
"name": "sails-cloudant-orm",
"version": "0.0.1",
"description": "Waterline Sails Adapter for IBM Cloudant Database",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha test/unit && node test/integration/runner -R spec -b"
},
"repository": {
"type": "git",
"url": "git+https://github.com/carlosgalveias/sails-cloudant-orm.git"
},
"keywords": [
"Cloudant",
"Waterline",
"Sails",
"orm",
"sailsjs",
"sails.js"
],
"author": "Carlos Galveias",
"main": "index.js",
"maintainers": [{
"name": "Carlos Galveias",
"email": "[email protected]"
}],
"license": "MIT",
"bugs": {
"url": "https://github.com/carlosgalveias/sails-cloudant-orm/issues"
},
"sailsAdapter": {
"sailsVersion": "~0.10.0",
"implements": [
"semantic",
"queryable"
]
},
"homepage": "https://github.com/carlosgalveias/sails-cloudant-orm#readme",
"dependencies": {
"async": "^0.7.0",
"cookie": "~0.1.1",
"deep-merge": "~0.3.1",
"handlebars": "~2.0.0-alpha.2",
"nano": "~5.7.1",
"underscore": "^1.6.0",
"xtend": "~2.1.2"
},
"devDependencies": {
"captains-log": "~0.10.6",
"mocha": "*",
"root-require": "~0.2.0",
"waterline-adapter-tests": "~0.10.0"
}
}