-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (27 loc) · 867 Bytes
/
package.json
File metadata and controls
28 lines (27 loc) · 867 Bytes
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
{
"name" : "node-red-contrib-swagger",
"version" : "0.4.0",
"description" : "A Node-RED node able to invoke Web APIs generically based on a Swagger description",
"dependencies" : {
"swagger-client" : "2.1.15"
},
"repository" : {
"type":"git",
"url":"https://github.com/kmi/node-red-contrib-swagger"
},
"license": "Apache",
"keywords": [ "node-red", "swagger", "web api", "web service", "client" ],
"node-red" : {
"nodes" : {
"swagger": "swagger/node-red-contrib-swagger.js"
}
},
"author": {
"name": "Carlos Pedrinaci",
"email": "carlos.pedrinaci@open.ac.uk",
"url": "http://www.cpedrinaci.net"
},
"scripts": {
"postinstall": "browserify ./swagger/adapter.js -o ./swagger/client-adapter.js"
}
}