forked from lgfa29/node-red-node-cf-cloudant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.35 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
59
60
61
62
63
64
{
"name": "node-red-node-cf-cloudant",
"version": "2.0.4",
"description": "A Node-RED node to access Cloudant and couchdb databases, supports views, query and bulk operations.",
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"@ibm-cloud/cloudant": "^0.1.2",
"cfenv": "^1.2.4"
},
"devDependencies": {
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"mocha": "^9.2.2",
"sinon": "^11.1.1"
},
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/node-red-contrib-ibm-cloud/node-red-node-cf-cloudant.git"
},
"license": "Apache-2.0",
"keywords": [
"node-red",
"cloudant",
"couchdb",
"bluemix",
"ibm-cloud"
],
"node-red": {
"version": ">=1.3.0",
"nodes": {
"cloudantplus": "modules/cloudant.js",
"cloudantplus-in": "modules/cloudant-in.js",
"cloudantplus-info": "modules/cloudant-info.js",
"cloudantplus-out": "modules/cloudant-out.js"
}
},
"author": {
"name": "Adam Hammond",
"email": "adam_hammond@uk.ibm.com"
},
"contributors": [
{
"name": "Túlio Pascoal"
},
{
"name": "Igor Leão"
},
{
"name": "Luiz Gustavo Ferraz Aoqui"
},
{
"name": "Austin Chang"
},
{
"name": "Stephan H. Wissel",
"email": "stw@linux.com"
}
]
}