forked from kmi/node-red-contrib-swagger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 876 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 876 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
29
30
31
32
33
{
"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"
}
}