forked from rgstephens/node-red-contrib-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 775 Bytes
/
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
{
"name": "node-red-contrib-graphql",
"version": "2.1.2",
"description": "A Node-RED node to make GraphQL calls",
"dependencies": {
"axios": "~1.2.1",
"follow-redirects": "~1.15.2",
"mustache": "~4.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/rgstephens/node-red-contrib-graphql"
},
"license": "Apache-2.0",
"keywords": [
"node-red",
"graphql"
],
"scripts": {
"debug": "node /Users/greg/.nvm/versions/node/v14.16.1/lib/node_modules/node-red/red.js"
},
"node-red": {
"version": ">=2",
"nodes": {
"graphql": "graphql.js"
}
},
"author": {
"name": "Greg Stephens",
"email": "greg@udon.org",
"url": "http://gstephens.org"
},
"engines": {
"node": ">=12"
}
}